android中的BroadcastReceiver中的getApplication

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

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

getApplication不能退出BroadcastReceiver,我该如何使用它?

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


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

链接地址: http://www.djcxy.com/p/11087.html

上一篇: getApplication in BroadcastReceiver in android

下一篇: How can I add rows to a listview asynchronously?