博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Fragment的广播消息接收
阅读量:5226 次
发布时间:2019-06-14

本文共 797 字,大约阅读时间需要 2 分钟。

这种方式不用在配置文件加东西 

广播注册,可以写在Activity(onCreate),也可以写在Fragment(onActivityCreated)里。

LocalBroadcastManager broadcastManager = LocalBroadcastManager.getInstance(getActivity());IntentFilter intentFilter = new IntentFilter();intentFilter.addAction("android.intent.action.CART_BROADCAST");//建议把它写一个公共的变量,这里方便阅读就不写了。BroadcastReceiver mItemViewListClickReceiver = new BroadcastReceiver() {            @Override            public void onReceive(Context context, Intent intent){                System.out.println("OK");            } }; broadcastManager.registerReceiver(mItemViewListClickReceiver, intentFilter);
 
发送广播
 
 
Intent intent = new Intent("android.intent.action.CART_BROADCAST");LocalBroadcastManager.getInstance(getActivity()).sendBroadcast(intent);

转载于:https://www.cnblogs.com/manmanlu/p/4353292.html

你可能感兴趣的文章
{面试题7: 使用两个队列实现一个栈}
查看>>
【练习】使用事务和锁定语句
查看>>
centos7升级firefox的flash插件
查看>>
Apache Common-IO 使用
查看>>
再谈Vmware NAT的配置和路由流程
查看>>
javaScript数组去重方法汇总
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>
linux常用命令
查看>>
NHibernate.3.0.Cookbook第四章第6节的翻译
查看>>
例1-1
查看>>
马达调速器,直流马达调速器,直流调速器
查看>>
前端编码规范小记
查看>>
c如何弹出保存路径/保存文件对话框
查看>>
HTML标签二
查看>>
Python 3语法小记(九) 异常 Exception
查看>>
使用shared memory 计算矩阵乘法 (其实并没有加速多少)
查看>>
Django 相关
查看>>