android—BroadcastReceiver 中的Context理解

Posted Gjson

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android—BroadcastReceiver 中的Context理解相关的知识,希望对你有一定的参考价值。

Receiver的官方文档:

关键在于如何理解,广播运行时的上下文环境。对于Receiver的注册,分为两种情况,第一种,在Manifest中注册,如下

        <receiver android:name=".MyReceiver">
            <intent-filter>
                <action android:name="com.zhty.test.context" />
            </intent-filter>
        </receiver>
 
  • 1
  • 2
  • 3
  • 4
  • 5

每次Application启动,或者接受全局广播:

         Intent intent = new Intent("com.zhty.test.context");
         intent.setFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
         sendBroadcast(intent);
 
  • 1
  • 2
  • 3

receiver会在系统中注册运行,此时的Context如下:

    context:android.app.ReceiverRestrictedContext@41a9dc88

Application销毁后取消注册,在此期间,context都是同一个对象。在收到全局广播时,其实已经开启了该应用程序的进程。

如果在Activity中注册,则Context就是activity对象:

    context:com.example.lenovo.androidtest.MainActivity@41a652a8

如果在Manifest和activity中同时注册,则会收到两个广播:

context:com.example.lenovo.androidtest.MainActivity@41a96fe8
context:android.app.ReceiverRestrictedContext@41a7c2b8

需要注意的是,无论在何处启动广播,执行onReceive()开启的进程都是广播所在的app的进程:

context:com.example.lenovo.androidtest.MainActivity@41a96fe8
context.getApplicationInfo().processName:com.example.lenovo.androidtest
pid: 5051
context:android.app.ReceiverRestrictedContext@41a7c2b8
context.getApplicationInfo().processName: com.example.lenovo.androidtest
pid:5051

以上是关于android—BroadcastReceiver 中的Context理解的主要内容,如果未能解决你的问题,请参考以下文章

Android_组件_BroadcastReceiver基础

Android BroadcastReceiver广播:基本使用

Android -- BroadCastReceiver的简单使用

Android BroadcastReceiver

android从broadcastreceiver刷新listview

Android开发实践 BroadcastReceiver