Boardcast receiver

转载自 : http://android.yaohuiji.com/archives/727


转载自  : http://wayfarer.iteye.com/blog/586157


本讲内容: Broadcast Receiver 的使用 
1、Broadcast Receiver简介 
2、Broadcast Receiver接收系统自带的广播 
3、自定义广播

一、Broadcast Receiver简介

Android中的四大组件是 Activity、Service、Broadcast和Content Provider。而Intent是一个对动作和行为的抽象描述,负责组件之间程序之间进行消息传递。那么Broadcast Receiver组件就提供了一种把Intent作为一个消息广播出去,由所有对其感兴趣的程序对其作出反应的机制。

二、Broadcast Receiver接收系统自带的广播

我们做一个例子,功能是在系统启动时播放一首音乐。

1、建立一个项目Lesson21_BroadcastReceiver,拷贝一首音乐进res/raw目录

2、建立HelloBroadcastReceiver.java 内容如下:

01 package android.basic.lesson21;
02
03 import android.content.BroadcastReceiver;
04 import android.content.Context;
05 import android.content.Intent;
06 import android.media.MediaPlayer;
07 import android.util.Log;
08
09 public class HelloBroadReciever extends BroadcastReceiver {
10
11     //如果接收的事件发生
12     @Override
13     public void onReceive(Context context, Intent intent) {
14         //则输出日志
15         Log.e("HelloBroadReciever""BOOT_COMPLETED!!!!!!!!!!!!!!!!!!!!!!!!!");
16         Log.e("HelloBroadReciever"""+intent.getAction());
17
18         //则播放一首音乐
19         MediaPlayer.create(context, R.raw.babayetu).start();
20     }
21 }

3、在AndroidManifest.xml中注册此Receiver :

01 <?xml version="1.0" encoding="utf-8"?>
02 <manifest xmlns:android="http://schemas.android.com/apk/res/android"android:versionname="1.0" android:versioncode="1" package="android.basic.lesson21">
03     <application android:icon="@drawable/icon" android:label="@string/app_name">
04         <activity android:label="@string/app_name"android:name=".MainBroadcastReceiver">
05             <intent -filter="">
06                 <action android:name="android.intent.action.MAIN">
07                 <category android:name="android.intent.category.LAUNCHER">
08             </category></action></intent>
09         </activity>
10     <!-- 定义Broadcast Receiver 指定监听的Action -->
11     <receiver android:name="HelloBroadReciever">
12             <intent -filter="">
13                 <action android:name="android.intent.action.BOOT_COMPLETED">
14             </action></intent>
15     </receiver>
16 </application></manifest>

4、发布程序,启动模拟器,可以在Logcat中看到:

~OY1$Y7O3}O64K{UCN_@$79

同时能听到音乐播放的声音。说明我们确实接收到了系统启动的广播事件,并做出了响应。

image

三、自定义广播

下面我们学习自己制作一个广播。我们接着刚才的例子,继续写下去。

5、在MainBroadcastReceiver.java中填写如下代码:

01 package android.basic.lesson21;
02
03 import android.app.Activity;
04 import android.content.Intent;
05 import android.os.Bundle;
06 import android.view.View;
07 import android.widget.Button;
08
09 public class MainBroadcastReceiver extends Activity {
10     /** Called when the activity is first created. */
11     @Override
12     public void onCreate(Bundle savedInstanceState) {
13         super.onCreate(savedInstanceState);
14         setContentView(R.layout.main);
15
16         Button b1 = (Button) findViewById(R.id.Button01);
17
18         b1.setOnClickListener(new View.OnClickListener() {
19
20             @Override
21             public void onClick(View v) {
22                 //定义一个intent
23                 Intent intent = new Intent().setAction(
24                         "android.basic.lesson21.Hello").putExtra("yaoyao",
25                         "yaoyao is 189 days old ,27 weeks -- 2010-08-10");
26                 //广播出去
27                 sendBroadcast(intent);
28             }
29         });
30     }
31 }

6、更改 HelloBroadReceiver.java 内容如下:

01 package android.basic.lesson21;
02
03 import android.content.BroadcastReceiver;
04 import android.content.Context;
05 import android.content.Intent;
06 import android.media.MediaPlayer;
07 import android.util.Log;
08
09 public class HelloBroadReciever extends BroadcastReceiver {
10
11     //如果接收的事件发生
12     @Override
13     public void onReceive(Context context, Intent intent) {
14         //对比Action决定输出什么信息
15         if(intent.getAction().equals("android.intent.action.BOOT_COMPLETED")){
16             Log.e("HelloBroadReciever""BOOT_COMPLETED !!!!!!!!!!!!!!!!!!!!!!!!!");
17         }
18
19         if(intent.getAction().equals("android.basic.lesson21.Hello")){
20             Log.e("HelloBroadReciever""Say Hello to Yaoyao !!!!!!!!!!!!!!!!!!!!!!!!!");
21             Log.e("HelloBroadReciever", intent.getStringExtra("yaoyao"));
22         }
23
24         //播放一首音乐
25         MediaPlayer.create(context, R.raw.babayetu).start();
26     }
27 }

7、更改 AndroidManifest.xml 内容如下:

01 <?xml version="1.0" encoding="utf-8"?>
02 <manifest xmlns:android="http://schemas.android.com/apk/res/android"package="android.basic.lesson21" android:versionname="1.0" android:versioncode="1">
03     <application android:icon="@drawable/icon" android:label="@string/app_name">
04         <activity android:label="@string/app_name"android:name=".MainBroadcastReceiver">
05             <intent -filter="">
06                 <action android:name="android.intent.action.MAIN">
07                 <category android:name="android.intent.category.LAUNCHER">
08             </category></action></intent>
09         </activity>
10     <!-- 定义Broadcast Receiver 指定监听的Action 这里我们的接收器,接收了2个Action,一个系统的一个我们自定义的  -->
11     <receiver android:name="HelloBroadReciever">
12             <intent -filter="">
13                 <action android:name="android.intent.action.BOOT_COMPLETED">
14             </action></intent>
15             <intent -filter="">
16                 <action android:name="android.basic.lesson21.HelloYaoYao">
17             </action></intent>
18
19     </receiver>
20 </application>
21 <uses -sdk="" android:minsdkversion="8">
22 </uses></manifest>

8、运行程序,点击按钮,查看LogCat,听听声音

image

3@({Q[{​{(E1EA7UQTZ[TDGK

好了,本讲就到这里。

2   


Broadcast Receiver用于接收并处理广播通知(broadcast announcements)。多数的广播是系统发起的,如地域变换、电量不足、来电来信等。程序也可以播放一个广播。程序可以有任意数量的 broadcast receivers来响应它觉得重要的通知。broadcast receiver可以通过多种方式通知用户:启动activity、使用NotificationManager、开启背景灯、振动设备、播放声音等,最 典型的是在状态栏显示一个图标,这样用户就可以点它打开看通知内容。

通常我们的某个应用或系统本身在某些事件(电池电量不足、来电来短信)来临时会广播一个Intent出去,我们可以利用注册一个Broadcast Receiver来监听到这些Intent并获取Intent中的数据。

 

1. 我们自己的程序主动广播Intent

Java代码   收藏代码
  1. final String BROADCAST = "com.forrest.action.mybroadcast";  
  2. Intent intent = new Intent(BROADCAST); // 对应setAction()  
  3. intent.putExtra("data_title""来短信啦");  
  4. intent.putExtra("data_text""美女你好,晚上可有空");  
  5. sendBroadcast(intent);  

 

2.接收广播

接收broadcast需要注册一个Broadcast Receiver,并且要注册一个Intent Filter来制定Broadcase Receiver是对哪些Intent进行监听。

(1)注册Broadcast Receiver

一个Broadcast receiver只有一个简单的回调函数:onReceive(Context curContext, Intent broadcastMsg),当一个广播消息被Receiver监听到时,Android会调用它的onReceive()方法,并将包含消息的Intent对象传给它。onReceive中代码的执行时间不要超过5s,否则android会弹出超时dialog。 此时是否另开一个线程来处理耗时的操作呢?

Receiver只在onReceive方法执行时是激活状态,只要onReceive一返回,Receiver就不再是激活状态了。Receiver进程是被一个激活状态的broadcast receiver所保护而不被系统终止的,一旦onReceive返回,Receiver进程broadcast receiver所保护而变为一个空进程,空进程是可以在任意时刻被终止的。这就带来了一个问题:当响应一个广播信息的处理十分耗时的时候,那么就应该把这个处理放在一个单独的线程里去执行,来保证主线程里的其他用户交互组件能够继续运行,而一旦这么做,当onReceive()唤起一个线程后就会马上返回,这时就会把Receiver进程放到被终止的境地。解决这个问题的方案是在onReceive()里开始一个Service,让这个Service去做这件事情,那么系统就会认为这个进程里还有活动正在进行。

(2)注册/注销Broadcast Receiver

1)在AndroidManifest.xml中注册

Xml代码   收藏代码
  1. <receiver android:name="Receiver1">  
  2.     <intent-filter>  
  3.                <!-- 和Intent中的action对应 -->  
  4.         <action android:name="com.forrest.action.mybroadcast"/>  
  5.     </intent-filter>  
  6. </receiver>  

 2)在代码中注册

Java代码   收藏代码
  1. IntentFilter filter = new IntentFilter("com.forrest.action.mybroadcast"); // 和广播中Intent的action对应  
  2. MyBroadcastReceiver br = new MyBroadcastReceiver();  
  3. registerReceiver(new MyBroadcastReceiver(), filter);  

 3)注销

Java代码   收藏代码
  1. unregisterReceiver(br);  

 

3. 示例代码

Java代码   收藏代码
  1. public class Receiver1 extends BroadcastReceiver {  
  2.     private Context context;  
  3.     public static final int NOTIFICATION_ID = 10001;  
  4.       
  5.     public void onReceive(Context context, Intent intent) {  
  6.         this.context = context;  
  7.         showNotification();  
  8.     }  
  9.       
  10.     private void showNotification() {  
  11.         Notification notification = new Notification(R.drawable.icon, "来电话啦...", System.currentTimeMillis());  
  12.         PendingIntent contentIntent = PendingIntent.getActivity(context, 0new Intent(context, MainActivity.class), 0);  
  13.         notification.setLatestEventInfo(context, "来电话啦...嘿嘿""赶紧接电话,否则误大事了", contentIntent);  
  14.           
  15.         NotificationManager notificationManager = (NotificationManager) context.getSystemService(  
  16.                 android.content.Context.NOTIFICATION_SERVICE);  
  17.         notificationManager.notify(NOTIFICATION_ID, notification);  
  18.     }  
  19. }  
 
Java代码   收藏代码
  1. public class Receiver2 extends BroadcastReceiver {  
  2.     private Context context;  
  3.       
  4.     @Override  
  5.     public void onReceive(Context context, Intent intent) {  
  6.         this.context = context;  
  7.         deleteNotification();  
  8.     }  
  9.       
  10.     private void deleteNotification() {  
  11.         NotificationManager notificationManager = (NotificationManager) context.getSystemService(android.content.Context.NOTIFICATION_SERVICE);  
  12.         notificationManager.cancel(Receiver1.NOTIFICATION_ID);  
  13.     }  
  14. }  
 
Java代码   收藏代码
  1. public class MainActivity extends Activity {  
  2.     private final String ACTION_SEND = "com.forrest.action.SENDMESSAGE",  
  3.                          ACTION_CLEAR = "com.forrest.action.CLEARNOTIFICATION";  
  4.       
  5.     public void onCreate(Bundle savedInstanceState) {  
  6.         super.onCreate(savedInstanceState);  
  7.         setContentView(R.layout.main);  
  8.         ( (Button) findViewById(R.id.btn1) ).setOnClickListener(new OnClickListener() {  
  9.             public void onClick(View v) {  
  10.                 clickMenuItem(ACTION_SEND);  
  11.             }  
  12.         });  
  13.         ( (Button) findViewById(R.id.btn2) ).setOnClickListener(new OnClickListener() {  
  14.             public void onClick(View v) {  
  15.                 clickMenuItem(ACTION_CLEAR);  
  16.             }  
  17.         });  
  18.     }  
  19.       
  20.     private void clickMenuItem(final String action) {  
  21.         Intent intent = new Intent(action);  
  22.         sendBroadcast(intent);  
  23.     }  
  24. }  

 注册Broadcast Reciver

Xml代码   收藏代码
  1. <application android:icon="@drawable/icon" android:label="@string/app_name">  
  2.     <activity android:name=".MainActivity"  
  3.               android:label="@string/app_name">  
  4.         <intent-filter>  
  5.             <action android:name="android.intent.action.MAIN" />  
  6.             <category android:name="android.intent.category.LAUNCHER" />  
  7.         </intent-filter>  
  8.     </activity>  
  9.     <receiver android:name="Receiver1">  
  10.         <intent-filter>  
  11.             <action android:name="com.forrest.action.SENDMESSAGE"/>  
  12.         </intent-filter>  
  13.     </receiver>  
  14.     <receiver android:name="Receiver2">  
  15.         <intent-filter>  
  16.             <action android:name="com.forrest.action.CLEARNOTIFICATION"/>  
  17.         </intent-filter>  
  18.     </receiver>  
  19. </application>  

 

4.


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值