Android提高之BroadcastReceiver實例詳解
前面幾篇文章分別討論了Activity和Service,本文就來討論BroastcastReceiver,Broastcast是應用程序間通信的手段。BroastcastReceiver也是跟Intent緊密相連的,動態(tài)/靜態(tài)注冊了BroastcastReceiver之后,使用sendBroadcast把Intent發(fā)送之后,系統(tǒng)會自動把符合條件的BroastcastReceiver啟動,這和嵌入式系統(tǒng)的中斷類似。
本文所示實例代碼主要演示了如何靜態(tài)/動態(tài)注冊BroastcastReceiver,向系統(tǒng)索取電量信息,以及枚舉信息的字段等功能和。
程序運行截圖如下所示:


上圖是發(fā)送Intent至內部動態(tài)注冊的BroadcastReceiver,接收到之后顯示消息名稱。動態(tài)注冊BroadcastReceiver用到registerReceiver()。

上圖是發(fā)送Intent至內部靜態(tài)注冊的BroadcastReceiver,接收到之后顯示消息名稱。靜態(tài)注冊比動態(tài)注冊麻煩點,先新建一個類繼承BroadcastReceiver,然后到AndroidManifest.xml 添加
<receiver android:name="clsReceiver2"> <intent-filter> <action android:name="com.testBroadcastReceiver.Internal_2"/> </intent-filter> </receiver>
第一個name是類名,第二個是action的名稱。

上圖是枚舉Intent消息的字段,這個功能比較適合懶人,把收到的Intent消息的字段全部分解了,再看看哪個需要的,懶得記住。實現(xiàn)這部分的代碼如下:
//當未知Intent包含的內容,則需要通過以下方法來列舉
Bundle b=intent.getExtras();
Object[] lstName=b.keySet().toArray();
for(int i=0;i<lstName.length;i++)
{
String keyName=lstName[i].toString();
Log.e(keyName,String.valueOf(b.get(keyName)));
}
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"> <Button android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="發(fā)送至內部動態(tài)注冊的BroadcastReceiver"></Button> <Button android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="發(fā)送至內部靜態(tài)注冊BroadcastReceiver"></Button> <Button android:id="@+id/Button03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="發(fā)送至系統(tǒng)BroadcastReceiver"></Button> </LinearLayout>
testBroadcastReceiver.java的代碼如下:
package com.testBroadcastReceiver;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class testBroadcastReceiver extends Activity {
Button btnInternal1,btnInternal2,btnSystem;
static final String INTENAL_ACTION_1 = "com.testBroadcastReceiver.Internal_1";
static final String INTENAL_ACTION_2 = "com.testBroadcastReceiver.Internal_2";
static final String INTENAL_ACTION_3 = "com.testBroadcastReceiver.Internal_3";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btnInternal1=(Button)this.findViewById(R.id.Button01);
btnInternal1.setOnClickListener(new ClickEvent());
btnInternal2=(Button)this.findViewById(R.id.Button02);
btnInternal2.setOnClickListener(new ClickEvent());
btnSystem=(Button)this.findViewById(R.id.Button03);
btnSystem.setOnClickListener(new ClickEvent());
//動態(tài)注冊廣播消息
registerReceiver(bcrIntenal1, new IntentFilter(INTENAL_ACTION_1));
}
class ClickEvent implements View.OnClickListener{
@Override
public void onClick(View v) {
if(v==btnInternal1)//給動態(tài)注冊的BroadcastReceiver發(fā)送數(shù)據(jù)
{
Intent intent = new Intent(INTENAL_ACTION_1);
sendBroadcast(intent);
}
else if(v==btnInternal2)//給靜態(tài)注冊的BroadcastReceiver發(fā)送數(shù)據(jù)
{
Intent intent = new Intent(INTENAL_ACTION_2);
sendBroadcast(intent);
}
else if(v==btnSystem)//動態(tài)注冊 接收2組信息的BroadcastReceiver
{
IntentFilter filter = new IntentFilter();//
filter.addAction(Intent.ACTION_BATTERY_CHANGED);//系統(tǒng)電量檢測信息
filter.addAction(INTENAL_ACTION_3);//第三組自定義消息
registerReceiver(batInfoReceiver, filter);
Intent intent = new Intent(INTENAL_ACTION_3);
intent.putExtra("Name", "hellogv");
intent.putExtra("Blog", "http://blog.csdn.net/hellogv");
sendBroadcast(intent);//傳遞過去
}
}
}
/*
* 接收動態(tài)注冊廣播的BroadcastReceiver
*/
private BroadcastReceiver bcrIntenal1 = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Toast.makeText(context, "動態(tài):"+action, 1000).show();
}
};
private BroadcastReceiver batInfoReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
//如果捕捉到的action是ACTION_BATTERY_CHANGED
if (Intent.ACTION_BATTERY_CHANGED.equals(action)) {
//當未知Intent包含的內容,則需要通過以下方法來列舉
Bundle b=intent.getExtras();
Object[] lstName=b.keySet().toArray();
for(int i=0;i<lstName.length;i++)
{
String keyName=lstName[i].toString();
Log.e(keyName,String.valueOf(b.get(keyName)));
}
}
//如果捕捉到的action是INTENAL_ACTION_3
if (INTENAL_ACTION_3.equals(action)) {
//當未知Intent包含的內容,則需要通過以下方法來列舉
Bundle b=intent.getExtras();
Object[] lstName=b.keySet().toArray();
for(int i=0;i<lstName.length;i++)
{
String keyName=lstName[i].toString();
Log.e(keyName,b.getString(keyName));
}
}
}
};
}
clsReceiver2.java的代碼如下:
package com.testBroadcastReceiver;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
/*
* 接收靜態(tài)注冊廣播的BroadcastReceiver,
* step1:要到AndroidManifest.xml這里注冊消息
* <receiver android:name="clsReceiver2">
<intent-filter>
<action
android:name="com.testBroadcastReceiver.Internal_2"/>
</intent-filter>
</receiver>
step2:定義消息的字符串
step3:通過Intent傳遞消息來驅使BroadcastReceiver觸發(fā)
*/
public class clsReceiver2 extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Toast.makeText(context, "靜態(tài):"+action, 1000).show();
}
}
感興趣的朋友可以調試運行該實例,希望能夠對大家的Android項目開發(fā)起到一點幫助作用。
相關文章
Android Studio 3.0 gradle提示版本太老
這篇文章主要介紹了Android Studio 3.0 gradle提示版本太老的配置和解決方法。2017-11-11
Android Studio3.6中的View Binding初探及用法區(qū)別
這篇文章主要介紹了Android 中的View Binding初探及用法區(qū)別,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-03-03
Android自定義ViewGroup實現(xiàn)豎向引導界面
這篇文章主要為大家詳細介紹了Andoird自定義ViewGroup實現(xiàn)豎向引導界面,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-03-03
Dcloud的native.js直接撥打電話Android實例代碼
本文為大家分享了3種利用Dcloud的native.js直接撥打電話實例代碼,由于iOS系統(tǒng)的限制所以只有Android版實例2018-09-09
Android應用中使用Fragment組件的一些問題及解決方案總結
這里我們講的Fragment主要探討的是support庫中的Fragment,包括Fragment常遇到的crash崩潰問題,嵌套Fragment收不到onActivityResult()回調以及一些常用tips等,需要的朋友可以參考下2016-05-05
Android自定義View實現(xiàn)圓弧進度效果逐步完成過程
在Android開發(fā)中,通過自定義View實現(xiàn)自己想要的效果是作為android開發(fā)程序員的一項必備技能,自定義View對于android開發(fā)來說也是比較難的一項技術2023-04-04

