概述
直接上代码
//把他当一个变量定义在Android Activity类中或自己代码方便的位置
BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
//你的操作
}
};
需要接受广播的位置进行注册广播
public static final String action = "ble.over.action";
IntentFilter filter = new IntentFilter(MainActivity.action);
registerReceiver(broadcastReceiver, filter);
最后在需要发送广播的位置进行调用
Intent intent = new Intent(action);
intent.putExtra("type", "one");//intent可以传递参数就不多说了
context.sendBroadcast(intent);
写的请多指教
最后
以上就是成就蜗牛为你收集整理的Android实现广播机制的全部内容,希望文章能够帮你解决Android实现广播机制所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复