如果说Activity和服务都是实干派,那么将Broadcast Receiver广播接收器组件定义为倾听者的角色是再恰当不过了。在Android平台中,广播接收器组件用于接收和响应系统广播的消息。与服务组件一样,广播接收器组件也需要通过Activity组件与用户进行交互。
一、Broadcast Receiver简介
Android中的四大组件是Activity、Service、Broadcast Receiver和Content Provider。而Intent是一个对动作和行为的抽象描述,负责组件之间程序之间进行消息传递。那么Broadcast Receiver组件就提供了一种把Intent作为一个消息广播出去,由所有对其感兴趣的程序对其作出反应的机制。
二、Broadcast Receiver接收系统自带的广播
我们做一个例子,功能是在系统启动时播放一首音乐。
1、建立一个项目Lesson21_BroadcastReceiver,拷贝一首音乐进res/raw目录。
2、建立HelloBroadcastReceiver.java 内容如下:
Java代码
- package android.basic.lesson21;
-
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.media.MediaPlayer;
- import android.util.Log;
-
- public class HelloBroadReciever extends BroadcastReceiver {
-
-
- @Override
- public void onReceive(Context context, Intent intent) {
-
- Log.e("HelloBroadReciever", "BOOT_COMPLETED!!!!!!!!!!!!!!!!!!!!!!!!!");
- Log.e("HelloBroadReciever", ""+intent.getAction());
-
-
- MediaPlayer.create(context, R.raw.babayetu).start();
- }
- }
3、在AndroidManifest.xml中注册此Receiver:
XML/HTML代码
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionname="1.0" android:versioncode="1" package="android.basic.lesson21">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:label="@string/app_name" android:name=".MainBroadcastReceiver">
- <intent -filter="">
- <action android:name="android.intent.action.MAIN">
- <category android:name="android.intent.category.LAUNCHER">
- </category></action></intent>
- </activity>
-
- <receiver android:name="HelloBroadReciever">
- <intent -filter="">
- <action android:name="android.intent.action.BOOT_COMPLETED">
- </action></intent>
- </receiver>
- </application>
- </manifest>
4、发布程序,启动模拟器,可以在Logcat中看到:
同时能听到音乐播放的声音。说明我们确实接收到了系统启动的广播事件,并做出了响应。
三、自定义广播
下面我们学习自己制作一个广播。我们接着刚才的例子,继续写下去。
5、在MainBroadcastReceiver.java中填写如下代码:
Java代码
- package android.basic.lesson21;
-
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.view.View;
- import android.widget.Button;
-
- public class MainBroadcastReceiver extends Activity {
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
- Button b1 = (Button) findViewById(R.id.Button01);
-
- b1.setOnClickListener(new View.OnClickListener() {
-
- @Override
- public void onClick(View v) {
-
- Intent intent = new Intent().setAction(
- "android.basic.lesson21.Hello").putExtra("yaoyao",
- "yaoyao is 189 days old ,27 weeks -- 2010-08-10");
-
- sendBroadcast(intent);
- }
- });
- }
- }
6、更改HelloBroadReceiver.java内容如下:
Java代码
- package android.basic.lesson21;
-
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.media.MediaPlayer;
- import android.util.Log;
-
- public class HelloBroadReciever extends BroadcastReceiver {
-
-
- @Override
- public void onReceive(Context context, Intent intent) {
-
- if(intent.getAction().equals("android.intent.action.BOOT_COMPLETED")){
- Log.e("HelloBroadReciever", "BOOT_COMPLETED !!!!!!!!!!!!!!!!!!!!!!!!!");
- }
-
- if(intent.getAction().equals("android.basic.lesson21.Hello")){
- Log.e("HelloBroadReciever", "Say Hello to Yaoyao !!!!!!!!!!!!!!!!!!!!!!!!!");
- Log.e("HelloBroadReciever", intent.getStringExtra("yaoyao"));
- }
-
-
- MediaPlayer.create(context, R.raw.babayetu).start();
- }
- }
7、更改AndroidManifest.xml内容如下:
XML/HTML代码
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="android.basic.lesson21" android:versionname="1.0" android:versioncode="1">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:label="@string/app_name" android:name=".MainBroadcastReceiver">
- <intent -filter="">
- <action android:name="android.intent.action.MAIN">
- <category android:name="android.intent.category.LAUNCHER">
- </category></action></intent>
- </activity>
-
- <receiver android:name="HelloBroadReciever">
- <intent -filter="">
- <action android:name="android.intent.action.BOOT_COMPLETED">
- </action></intent>
- <intent -filter="">
- <action android:name="android.basic.lesson21.HelloYaoYao">
- </action></intent>
-
- </receiver>
- </application>
- <uses -sdk="" android:minsdkversion="8">
- </uses>
- </manifest>
8、运行程序,点击按钮,查看LogCat,听听声音。
好了,关于Broadcast Receiver的内容就讲到这里了,希望大家能学习巩固好。