9

我想用app = (MyApplication)getApplication();BroadcastReceiver

我正在使用这个链接: http: //www.devahead.com/blog/tag/application/

getApplication在 BroadcastReceiver 中没有退出,我该如何使用它?

我需要它,因为我想在两个 BroadcastReceiver 之间共享数据

4

1 回答 1

2

BroadcastReceiver有一个onReceive(Context ctx, Intent intent)被调用来接收消息的方法......你正在被手动传递一个上下文。

于 2012-08-16T20:26:37.600 回答