BroadcastReceiver 发送以及接收广播

1.写一个主类用来发送广播
2.注册广播

IntentFilter intentFilter = new IntentFilter();
//可以添加多个地址
intentFilter.addAction("android.bawei.action.customer");
//广播接收器 参数一:广播接受者的对象 参数二:过滤器 通过过滤器来指定发送地址
registerReceiver(receiver,intentFilter);

3.发送广播
广播有三种发送方式
(1)无序广播
(2)有序广播
(3)粘性广播

//无序广播
Intent intent = new Intent();
intent.setAction("android.bawei.action.customer");
Bundle bundle = new Bundle();
bundle.putString("msg","我是猪头");
intent.putExtras(bundle);
sendBroadcast(intent);
//有序广播
//有序广播要在注册时给intentFilter对象设置一个优先级
intentFilter.setPriority(1000);
//在发送消息时
sendOrderedBroadcast(intent,null);
//粘性广播 
//要注意的是 粘性广播已经过时在android8.0以后已经无法使用
//粘性广播最大的特点就是可以先发送消息 再注册 缺点是很消耗内存
sendStickyBroadcast(intent);

发送方写完 写接收方

//继承自BroadcastReceiver
public class MyReceiver extends BroadcastReceiver {    
    //实现onReceive方法 参数一:上下文 参数二:接受到的值
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        //判断是否是自己要找的地址
        if("android.bawei.action.customer1".equals(action)){
          //消息接到了
            Log.i("TAG","一号收到");
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值