Android 之 BroadcastReceiver自定义广播
程序员文章站
2022-05-16 13:25:14
...
1、BroadcastReceiver:
* 广播接收器,处理的是系统级别的;
* 事件的广播机制:构建Intent对象;
* 使用sendBroadcast()方法将广播发送出去;
* 事件的接受者是通过一个继承了BroadcastRecevier的类来实现,覆盖onReceive()方法;
2、android中标准的Broadcast Action来响应系统广播事件:
* ACTION_TIME_CHANGED 时间改变是触发;
* ACTION_BOOT_COMPLETED 系统启动完成后触发;
* ACTION_PACKAGE_ADDED 添加包时触发;
* ACTION_BATTERY_CHANGED 电量低时触发;
* 自定义Action;
3、小贴士:
* 四大组件:activity service broadcastreceiver contentprovider;
* 四大组件的使用都必须进行注册;
* 四大组件之间的交互使用Intent;
4、使用案例:自定义广播的使用!
Activity代码如下:
package com.example.broadcastreceiver; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MaiActivity extends Activity { private Button broadcastRecevierBtn; private final String MY_ACTION = "android.com.example.broadcastreceiver.action.MYACTION"; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); /* 获取组件对象 */ broadcastRecevierBtn = (Button) findViewById(R.id.broadcastReceiver); /* 设置按钮点击事件监听器 */ broadcastRecevierBtn.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO 执行动作:发送广播 /* 构建Intent对象, 实现组件之间的跳转intent:目的 */ /* 已知目的地组件的名称,使用该种方式 */ //Intent intent = new Intent(MaiActivity.this,MyBroadcastReceiver.class); /* 当跳转到的组件不确定的时候,则:根据动作(action 的值)由系统自动判定跳转到何处 */ Intent intent = new Intent(); /* 设置Intent对象的action属性 */ intent.setAction(MY_ACTION); /* 为Intent对象添加附加信息 */ intent.putExtra("msg", "发送广播测试成功....."); /* 发布广播 */ sendBroadcast(intent); } }); } }
广播事件的接受者(一个继承了BroadcastReceiver的类)
package com.example.broadcastreceiver; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.widget.Toast; /* 广播接收器 ,响应发送广播的操作 *//* 接受广播 */ public class MyBroadcastReceiver extends BroadcastReceiver { /* 覆写该方法,对广播事件执行响应的动作 */ public void onReceive(Context context, Intent intent) { /* 获取Intent对象中的数据 */ String msg = intent.getStringExtra("msg"); /* */ Toast.makeText(context, msg, 1000).show(); } }
注册代码:
<!-- 为广播接收组件注册 --> <receiver android:name=".MyBroadcastReceiver"> <intent-filter> <action android:name="android.com.example.broadcastreceiver.action.MYACTION" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </receiver>
效果图:
上一篇: python基础-set集合
下一篇: PHP文件锁用法详解_PHP教程
推荐阅读
-
android之视频播放系统VideoView和自定义VideoView控件的应用
-
Android自定义控件之圆形、圆角ImageView
-
Android图片加载框架解析之Glide的自定义模块功能讲解
-
Android开发之BroadcastReceiver用法实例分析
-
Android 中在有序广播中添加自定义权限的实例
-
Android开发之自定义view实现通讯录列表A~Z字母提示效果【附demo源码下载】
-
Android四大组件之BroadcastReceiver
-
android自定义view之模拟qq消息拖拽删除效果
-
Android开发自定义控件之折线图实现方法详解
-
Android开发之自定义星星评分控件RatingBar用法示例