分析广播接收器的代码
注册动态广播接收器
IntentFilter intent = new IntentFilter();
intent.addAction(BluetoothDevice.ACTION_FOUND);// 用BroadcastReceiver来取得搜索结果
intent.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);
intent.addAction(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED);
intent.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
registerReceiver(searchDevices, intent);//注册广播
处理广播接收到的键值
private BroadcastReceiver searchDevices = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();//获取Intent的动作
Bundle b = intent.getExtras();//获取Intent的附加信息,传递的一组键值对
Object[] lstName = b.keySet().toArray();//将附加信息里面的
这段代码是关于系统已经接收到所属的广播,现在所做的是在onReceive()方法中处理的接收到的数据。
String action = intent.getAction();通过Intent的getAction()方法获取所属的Action,Action的属性是一个普通的字符串,代表某一特定的动作,所以Action是属于String类型。
Bundle b = intent.getExtras();当广播发送的信息比较大,我们用Bundle用作容器,把信息装进Bundle里,然后在发送出去,所以我们在这里所接收到的信息也是Bundle,里面的内容是键值对。
Object[] lstName = b.keySet().toArray();Object类是所有类的父类(包括数组),因为广播接收的键值对有很多类型,所以我们用Object[]。通过Bundle.keySet()方法取出键值对引用toArray()方法转变成数组
综合以上的代码
- 创建意图过滤器,将所要过滤出来的Action加入Intent
- 通过registerReceiver()方法注册广播接收器
- 使用onReceive()方法,在该方法中处理得到Intent中的Action,并将活动中的 键值对提取出来,转换成数组。