Android 之 BroadcastReceiver自定义广播
1、BroadcastReceiver:
*广播接收器,处理的是系统级别的;
*事件的广播机制:构建Intent对象;
*使用sendBroadcast()方法将广播发送出去;
*事件的接受者是通过一个继承了BroadcastRecevier的类来实现,覆盖onReceive()方法;
2、android中标准的BroadcastAction来响应系统广播事件:
*ACTION_TIME_CHANGED时间改变是触发;
*ACTION_BOOT_COMPLETED系统启动完成后触发;
*ACTION_PACKAGE_ADDED添加包时触发;
*ACTION_BATTERY_CHANGED电量低时触发;
*自定义Action;
3、小贴士:
*四大组件:activityservicebroadcastreceivercontentprovider;
*四大组件的使用都必须进行注册;
*四大组件之间的交互使用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>
效果图:
相关推荐
chenjinlong 2020-04-06
xilove0 2020-01-14
magic00 2020-01-10
xilove0 2019-12-09
ThedakeLaugh 2010-08-23
fuzhangandroid 2011-04-07
老菜鸟自习室 2011-08-05
StarkHuang 2014-09-04
mingming 2015-01-13
taiyuanwuyin 2015-03-31
易辰Android 2012-05-08
Alexlee 2018-04-20
OliverLau 2019-06-29
Alexlee 2018-04-20