android中的BroadcastReceiver中的getApplication

时间:2012-08-16 20:17:30

标签: android

我想在app = (MyApplication)getApplication();

中使用BroadcastReceiver

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

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

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

1 个答案:

答案 0 :(得分:3)

您的BroadcastReceiver有一个onReceive(Context ctx, Intent intent)方法,可以通过该方法接收消息......您手动传递了一个上下文。