Android四大组件之广播BroadcastReceiver详解
定义
broadcastreceiver,“广播接收者”的意思,顾名思义,它就是用来接收来自系统和应用中的广播。在android系统中,广播体现在方方面面,例如当开机完成后系统会产生一条广播,接收到这条广播就能实现开机启动服务的功能;当网络状态改变时系统会产生一条广播,接收到这条广播就能及时地做出提示和保存数据等操作;当电池电量改变时,系统会产生一条广播,接收到这条广播就能在电量低时告知用户及时保存进度等等。android中的广播机制设计的非常出色,很多事情原本需要开发者亲自操作的,现在只需等待广播告知自己就可以了,大大减少了开发的工作量和开发周期。而作为应用开发者,就需要数练掌握android系统提供的一个开发利器,那就是broadcastreceiver。
在我们详细分析创建broadcastreceiver的两种注册方式前,我们先罗列本次分析的大纲:
(1)对静态和动态两种注册方式进行概念阐述以及演示实现步骤
(2)简述两种broadcastreceiver的类型(为后续注册方式的对比做准备)
(3)在默认广播类型下设置优先级和无优先级情况下两种注册方式的比较
(4)在有序广播类型下两种注册方式的比较
(5)通过接受打电话的广播,在程序(activity)运行时和终止运行时,对两种注册方式的比较
(6)总结两种方式的特点
一、静态和动态注册方式
? 构建intent,使用sendbroadcast方法发出广播定义一个广播接收器,该广播接收器继承broadcastreceiver,并且覆盖onreceive()方法来响应事件注册该广播接收器,我们可以在代码中注册(动态注册),也可以androidmanifest.xml配置文件中注册(静态注册)。
案例解析:
1.主界面设计
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:orientation="vertical" android:layout_height="match_parent" tools:context=".mainactivity"> <button android:id="@+id/btnsend" android:layout_width="match_parent" android:layout_height="wrap_content" android:insettop="16dp" android:text="发松" /> </linearlayout>
如图:
2.后台代码设计
package com.aaa.btdemo02; import androidx.appcompat.app.appcompatactivity; import android.content.intent; import android.os.bundle; import android.view.view; import android.widget.button; public class mainactivity extends appcompatactivity { //定义对象;村长:一样权威,光辉的存在,拿着大喇叭,讲话; button btnsend; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); //取值 btnsend=(button) findviewbyid(r.id.btnsend); //这对这个按钮做监听事件;发送信息,大喇叭... btnsend.setonclicklistener(new view.onclicklistener() { @override public void onclick(view view) { intent intent=new intent(); //设置intent的动作;后面字符串是自定义的 intent.setaction("android.intent.action.receiverdata"); intent.putextra("msg","羊村各位村民开会了"); mainactivity.this.sendbroadcast(intent); } }); } }
3.创建自己的广播接收器类
package com.aaa.btdemo02; import android.content.broadcastreceiver; import android.content.context; import android.content.intent; import android.text.textutils; import android.util.log; public class myreceiver extends broadcastreceiver { @override public void onreceive(context context, intent intent) { //接受广播 if(intent==null)return; //intent:接受从主端传递过来的数据,action数据; string action=intent.getaction(); //针对上述做判断;第一个判断是否为空也可以写成action.isempty if(!textutils.isempty(action)&&"android.intent.action.receiverdata".equals(action)){ string msg=intent.getstringextra("msg");//不习惯可以使用bundle log.i("喜洋洋-->",msg); } } }
4.注册广播
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.aaa.btdemo02"> <application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundicon="@mipmap/ic_launcher_round" android:supportsrtl="true" android:theme="@style/theme.btdemo02"> <activity android:name=".mainactivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <receiver android:name=".myreceiver" android:exported="true"> <intent-filter> <!-- 自定义的action名 --> <action android:name="android.intent.action.receiverdata"/> </intent-filter> </receiver> </application> </manifest>
5.运行效果
在这里插入图片描述
到此这篇关于android四大组件之广播broadcastreceiver详解的文章就介绍到这了,更多相关android 四大组件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 草菇怎么做好吃,教你几个小妙招
下一篇: 桑椹酱,你会做了吗
推荐阅读
-
Android编程四大组件之BroadcastReceiver(广播接收者)用法实例
-
Android编程四大组件之Activity用法实例分析
-
Android四大组件之Service(服务)实例详解
-
Android编程中的四大基本组件与生命周期详解
-
Android应用程序四大组件之使用AIDL如何实现跨进程调用Service
-
Android列表组件ListView使用详解之隐藏滚动条
-
android菜鸟教程目录(android 四大组件详解)
-
Android应用程序四大组件之使用AIDL如何实现跨进程调用Service
-
android菜鸟教程目录(android 四大组件详解)
-
Android四大组件之Activity