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","一号收到");
}
}
}