Broadcast Receiver

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>  
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值