android中的BroadcastReceiver中的getApplication
我想使用app = (MyApplication)getApplication();
在BroadcastReceiver
我正在使用thi链接:http://www.devahead.com/blog/tag/application/
但getApplication
不能退出BroadcastReceiver,我该如何使用它?
我需要它,因为我想在两个BroadcastReceiver之间共享数据
你的BroadcastReceiver
有一个onReceive(Context ctx, Intent intent)
方法,它被调用来接收消息......你正在交付一个上下文。