如果說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>
- <!-- 定義Broadcast Receiver 指定監聽的Action -->
- <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 {
- /** Called when the activity is first created. */
- @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 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) {
- //對比Action決定輸出什麼信息
- 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>
- <!-- 定義Broadcast Receiver 指定監聽的Action 這裡我們的接收器,接收了2個Action,一個系統的一個我們自定義的 -->
- <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的內容就講到這裡了,希望大家能學習鞏固好。