我想在app = (MyApplication)getApplication();
BroadcastReceiver
我正在使用这个链接: http://www.devahead.com/blog/tag/application/
但是getApplication
没有在BroadcastReceiver中退出,我该如何使用它?
我需要它,因为我想在两个BroadcastReceiver之间共享数据
答案 0 :(得分:3)
您的BroadcastReceiver
有一个onReceive(Context ctx, Intent intent)
方法,可以通过该方法接收消息......您手动传递了一个上下文。