当前位置: 首页 > article >正文

安卓-广播LocalBroadcastManager

温馨提示:
要保证发送消息和接受消息使用的是同一个Activity。

发送消息

        Intent intent = new Intent(BROADCAST_RECEIVER);
        intent.putExtra("x", 1);
        intent.putExtra("y", 1);
        LocalBroadcastManager.getInstance(getActivity()).sendBroadcast(intent);

接受消息

//注册
LocalBroadcastManager.getInstance(getActivity()).registerReceiver(mBroadcastReceiver, new IntentFilter(BROADCAST_RECEIVER));
 mBroadcastReceiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                // 获取点击位置
                float x = intent.getFloatExtra("x", -1);
                float y = intent.getFloatExtra("y", -1);
                Rect fragmentBounds = new Rect();
                rootView.getGlobalVisibleRect(fragmentBounds);
                if(fragmentBounds.contains((int)x, (int)y)){
                    LOGGER.info("在范围内");
                }else{
                    LOGGER.info("在范围外");
                }
            }
        };
//LocalBroadcastManager.getInstance(getActivity()).unregisterReceiver(mBroadcastReceiver);

http://www.kler.cn/a/283230.html

相关文章:

  • 〔 MySQL 〕数据类型
  • 【mysql】使用宝塔面板在云服务器上安装MySQL数据库并实现远程连接
  • OCR识别铁路电子客票
  • linux设置主机名
  • mac终端使用pytest执行iOS UI自动化测试方法
  • 【VBA实战】用Excel制作排序算法动画续
  • 标准c++---2
  • 什么是Socks5代理协议?揭秘其优势与应用
  • UDP英译汉网络词典
  • 在VB.net中,LINQ有什么查询表达式,举例说明
  • 掌握 Rust 中的 YAML 魔法:Serde_yaml 使用指南
  • QT在控件graphicsView中绘制箭头
  • Native开发与逆向第三篇 - hook JNI函数NewStringUTF
  • 构建视频生态技术基石:EasyCVR平台如何打破视频流媒体协议壁垒
  • kubeadm部署k8s1.25.3一主二从集群(Containerd)
  • 【GIT】说一说 Git 的常见命令和实践
  • uniapp中使用弹出框控制Tab栏区域显示与隐藏
  • Python编程实战营:四款实用小项目助你快速入门,从零开始打造你的个人项目集!
  • 【大模型理论篇】RoPE旋转位置编码底层数学原理分析
  • 深入理解Spring Boot的开箱即用与自动装配特性
  • 【爬虫软件】YouTube关键词搜索采集工具
  • 2024如何开始进入美业?美业创业步骤分享|博弈美业系统管理系统源码
  • Spark-第八周
  • 浅谈【数据结构】树与二叉树之哈夫曼树
  • 【Java设计模式】集合管道模式:简化数据操作
  • 买对不买贵,宠物空气净化器应该怎么选才能选到好的产品