我想在app = (MyApplication)getApplication();
中使用BroadcastReceiver
我正在使用这个链接:
http://www.devahead.com/blog/tag/application/
但是getApplication
不在BroadcastReceiver中退出,我该如何使用它?
我需要它,因为我想在两个BroadcastReceiver之间共享数据
最佳答案
您的BroadcastReceiver
有一个onReceive(Context ctx, Intent intent)
方法,该方法被调用来接收消息...您正在手工交付上下文。
关于android - Android中BroadcastReceiver中的getApplication,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11994838/