Android: BroadcastReceiver简介和案例

https://www.jianshu.com/p/aa7da3d461d5 :Broadcasts 广播

1. 广播的接收者需要通过调用registerReceiver函数告诉系统,它对什么样的广播有兴趣,即指定IntentFilter,

   并且向系统注册广播接收器,即指定BroadcastReceiver:

IntentFilter counterActionFilter = new IntentFilter(CounterService.BROADCAST_COUNTER_ACTION);

registerReceiver(counterActionReceiver, counterActionFilter);

String BROADCAST_COUNTER_ACTION = “shy.luo.broadcast.COUNTER_ACTION”;

private BroadcastReceiver counterActionReceiver = new BroadcastReceiver(){

public void onReceive(Context context, Intent intent) {

int counter = intent.getIntExtra(CounterService.COUNTER_VALUE, 0);

String text = String.valueOf(counter);

counterText.setText(text);

Log.i(LOG_TAG, “Receive counter event”);

}

};

2. 广播的发送者通过调用sendBroadcast函数来发送一个指定的广播,并且可以指定广播的相关参数:

Intent intent = new Intent(BROADCAST_COUNTER_ACTION);

intent.putExtra(COUNTER_VALUE, counter);

sendBroadcast(intent)

这里,指定的广播为CounterService.BROADCAST_COUNTER_ACTION,并且附带的带参数当前的计数器值counter。

调用了sendBroadcast函数之后,所有注册了CounterService.BROADCAST_COUNTER_ACTION广播的接收者便可以收到这个广播了。

在第1步中,广播的接收者把广播接收器注册到ActivityManagerService中;

在第2步中,广播的发送者同样是把广播发送到ActivityManagerService中,由ActivityManagerService去查找注册了这个广播的接收者,然后把广播分发给它们。

在第2步的分发的过程,其实就是把这个广播转换成一个消息,然后放入到接收器所在的线程消息队列中去,最后就可以在消息循环中调用接收器的onReceive函数了。

这里有一个要非常注意的地方是,由于ActivityManagerService把这个广播放进接收器所在的线程消息队列后,就返回了,它不关心这个消息什么时候会被处理,

因此,对广播的处理是异步的,即调用sendBroadcast时,这个函数不会等待这个广播被处理完后才返回。

    原文作者:shuai_wen
    原文地址: https://blog.csdn.net/u011279649/article/details/80982947
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞