BroadcastReceiver(广播接收器)是Android中的四大组件之中的一个。
以下是Android Doc中关于BroadcastReceiver的概述:
①广播接收器是一个专注于接收广播通知信息,并做出相应处理的组件。非常多广播是源自于系统代码的──比方,通知时区改变、电池电量低、拍摄了一张照片或者用户改变了语言选项。应用程序也能够进行广播──比方说,通知其他应用程序一些数据下载完毕并处于可用状态。
②应用程序能够拥有随意数量的广播接收器以对全部它感兴趣的通知信息予以响应。全部的接收器均继承自BroadcastReceiver基类。
③广播接收器没实用户界面。然而,它们能够启动一个activity来响应它们收到的信息,或者用NotificationManager来通知用户。通知能够用非常多种方式来吸引用户的注意力──闪动背灯、震动、播放声音等等。一般来说是在状态栏上放一个持久的图标,用户能够打开它并获取消息。
Android中的广播事件有两种,一种就是系统广播事件,比方:ACTION_BOOT_COMPLETED(系统启动完毕后触发),ACTION_TIME_CHANGED(系统时间改变时触发),ACTION_BATTERY_LOW(电量低时触发)等等。第二种是我们自己定义的广播事件。
广播事件的流程
①注冊广播事件:注冊方式有两种,一种是静态注冊,就是在AndroidManifest.xml文件里定义,注冊的广播接收器必需要继承BroadcastReceiver;还有一种是动态注冊,是在程序中使用Context.registerReceiver注冊,注冊的广播接收器相当于一个匿名类。两种方式都需要IntentFIlter。
②发送广播事件:通过Context.sendBroadcast来发送,由Intent来传递注冊时用到的Action。
③接收广播事件:当发送的广播被接收器监听到后,会调用它的onReceive()方法,并将包括消息的Intent对象传给它。onReceive中代码的运行时间不要超过5s,否则Android会弹出超时dialog。
以下我通过代码演示自己定义广播事件和系统广播事件的使用。完整代码下载地址:android_broadcastreceiver.rar
Step1:在MainActivity的onStart方法中注冊广播事件。静态注冊方式是在AndroidManifest.xml文件里。
Step2: 点击对应button后会触发对应的方式来发送广播消息。
/**
* MainActivity
* @author zuolongsnail
*
*/
public class MainActivity extends Activity {
private Button sendStaticBtn;
private Button sendDynamicBtn;
private Button sendSystemBtn;
private static final String STATICACTION = "com.byread.static";
private static final String DYNAMICACTION = "com.byread.dynamic";
// USB设备连接
private static final String SYSTEMACTION = Intent.ACTION_POWER_CONNECTED;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
sendStaticBtn = (Button) findViewById(R.id.send_static);
sendDynamicBtn = (Button) findViewById(R.id.send_dynamic);
sendSystemBtn = (Button) findViewById(R.id.send_system);
sendStaticBtn.setOnClickListener(new MyOnClickListener());
sendDynamicBtn.setOnClickListener(new MyOnClickListener());
sendSystemBtn.setOnClickListener(new MyOnClickListener());
}
class MyOnClickListener implements OnClickListener{
@Override
public void onClick(View v) {
// 发送自己定义静态注冊广播消息
if(v.getId() == R.id.send_static){
Log.e("MainActivity", "发送自己定义静态注冊广播消息");
Intent intent = new Intent();
intent.setAction(STATICACTION);
intent.putExtra("msg", "接收静态注冊广播成功!");
sendBroadcast(intent);
}
// 发送自己定义动态注冊广播消息
else if(v.getId() == R.id.send_dynamic){
Log.e("MainActivity", "发送自己定义动态注冊广播消息");
Intent intent = new Intent();
intent.setAction(DYNAMICACTION);
intent.putExtra("msg", "接收动态注冊广播成功!");
sendBroadcast(intent);
}
// 发送系统动态注冊广播消息。当手机连接充电设备时会由系统自己发送广播消息。
else if(v.getId() == R.id.send_system){
Log.e("MainActivity", "发送系统动态注冊广播消息");
Intent intent = new Intent();
intent.setAction(SYSTEMACTION);
intent.putExtra("msg", "正在充电。。。。");
}
}
}
@Override
protected void onStart() {
super.onStart();
Log.e("MainActivity", "注冊广播事件");
// 注冊自己定义动态广播消息
IntentFilter filter_dynamic = new IntentFilter();
filter_dynamic.addAction(DYNAMICACTION);
registerReceiver(dynamicReceiver, filter_dynamic);
// 注冊系统动态广播消息
IntentFilter filter_system = new IntentFilter();
filter_system.addAction(SYSTEMACTION);
registerReceiver(systemReceiver, filter_system);
}
private BroadcastReceiver dynamicReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Log.e("MainActivity", "接收自己定义动态注冊广播消息");
if(intent.getAction().equals(DYNAMICACTION)){
String msg = intent.getStringExtra("msg");
Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
}
}
};
private BroadcastReceiver systemReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Log.e("MainActivity", "接收系统动态注冊广播消息");
if(intent.getAction().equals(SYSTEMACTION)){
String msg = intent.getStringExtra("msg");
Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
}
}
};
}
Step3:接收广播消息。下面为两个静态注冊的广播接收器。
/**
* 自己定义静态注冊广播消息接收器
* @author zuolongsnail
*
*/
public class StaticReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String msg = intent.getStringExtra("msg");
Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
}
}
/**
* 系统静态注冊广播消息接收器
*
* @author zuolongsnail
*
*/
public class SystemReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_BATTERY_LOW)) {
Log.e("SystemReceiver", "电量低提示");
Toast.makeText(context, "您的手机电量偏低,请及时充电", Toast.LENGTH_SHORT).show();
}
}
}
以下是AndroidManifest.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.byread" android:versionCode="1" android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- 注冊自己定义静态广播接收器 -->
<receiver android:name=".StaticReceiver">
<intent-filter>
<action android:name="com.byread.static" />
</intent-filter>
</receiver>
<!-- 注冊系统静态广播接收器 -->
<receiver android:name=".SystemReceiver">
<intent-filter>
<action android:name="android.intent.action.BATTERY_LOW" />
</intent-filter>
</receiver>
</application>
</manifest>
界面布局文件main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello" />
<Button android:id="@+id/send_static" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="发送自己定义静态注冊广播" />
<Button android:id="@+id/send_dynamic" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="发送自己定义动态注冊广播" />
<Button android:id="@+id/send_system" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="发送系统动态注冊广播" />
</LinearLayout>
解说结束,只是有一点我自己也没弄清楚,这个系统广播事件假设我在程序中sendBroadcast的话,那就是自己定义广播了。假设不写的话,那是不是系统自己来发送相应Action广播呢?有知道的同学请告诉我一下,再此先谢过。
执行界面:
【Android中Broadcast Receiver组件具体解释
】