一:Android 廣播的生命週期 android
一個廣播接收者有一個回調方法:void onReceive(Context curContext, Intent broadcastMsg)。當一個廣播消息到達接收者時,Android調用它的onReceive()方法並傳遞給它包含消息的Intent對象。廣播接收者被認爲僅當它執行這個方法時是活躍的。當onReceive()返回後,它是不活躍的。 app
有一個活躍的廣播接收者的進程是受保護的,不會被殺死。可是系統能夠在任什麼時候候殺死僅有不活躍組件的進程,當佔用的內存別的進程須要時。 less
這帶來一個問題,當一個廣播消息的響應時費時的,所以應該在獨立的線程中作這些事,遠離用戶界面其它組件運行的主線程。若是onReceive()衍生線程而後返回,整個進程,包括新的線程,被斷定爲不活躍的(除非進程中的其它應用程序組件是活躍的),將使它處於被殺的危機。解決這個問題的方法是onReceive()啓動一個服務,及時服務作這個工做,所以系統知道進程中有活躍的工做在作。 ide
Broadcast Receive爲廣播接收器,它和事件處理機制相似,只不過事件的處理機制是程序組件級別的,廣播處理機制是系統級別的。 線程
Broadcast Receiver用於接收並處理廣播通知(broadcast announcements)。多數的廣播是系統發起的,如地域變換、電量不足、來電來信等。程序也能夠播放一個廣播。程序能夠有任意數量的 broadcast receivers來響應它以爲重要的通知。broadcast receiver能夠經過多種方式通知用戶:啓動activity、使用NotificationManager、開啓背景燈、振動設備、播放聲音等,最典型的是在狀態欄顯示一個圖標,這樣用戶就能夠點它打開看通知內容。 xml
一般咱們的某個應用或系統自己在某些事件(電池電量不足、來電來短信)來臨時會廣播一個Intent出去,咱們能夠利用註冊一個Broadcast Receiver來監聽到這些Intent並獲取Intent中的數據。 對象
二:Android 廣播應用
android中,不一樣進程之間傳遞信息要用到廣播,能夠有兩種方式來實現。
第一種方式:在Manifest.xml中註冊廣播,是一種比較推薦的方法,由於它不須要手動註銷廣播(若是廣播未註銷,程序退出時可能會出錯)。
具體實如今Manifest的application中添加:
<receiver android:name=".mEvtReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
上面兩個android:name分別是廣播名和廣播的動做(這裏的動做是表示系統啓動完成),若是要本身發送一個廣播,在代碼中爲:
Intent i = new Intent("android.intent.action.BOOT_COMPLETED");
sendBroadcast(i);
這樣,廣播就發出去了,而後是接收。接收能夠新建一個類,繼承至BroadcastReceiver,也能夠建一個BroadcastReceiver的實例,而後得寫onReceive方法,實現以下:
protected BroadcastReceiver mEvtReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action.equals("android.intent.action.BOOT_COMPLETED")) {
//Do something
}
}
}; 繼承
完整實例: 生命週期
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.basic.lesson21"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" /> 進程
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainBroadcastReceiver"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".HelloBroadReciever">
<intent-filter>
<action android:name="android.basic.lesson21.Hello88" />
</intent-filter>
</receiver>
</application>
</manifest>
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.Hello88")
.putExtra("yaoyao","yaoyao is 189 days old ,27 weeks -- 2010-08-10");
System.out.println("sendBroadcast");
// 廣播出去
sendBroadcast(intent);
}
});
}
}
package android.basic.lesson21;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class HelloBroadReciever extends BroadcastReceiver {
public HelloBroadReciever(){
System.out.println("HelloBroadReciever");
}
// 若是接收的事件發生
@Override
public void onReceive(Context context, Intent intent) {
// 對比Action決定輸出什麼信息
if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
Log.i("HelloBroadReciever","BOOT_COMPLETED !!!!!!!!!!!!!!!!!!!!!!!!!");
}
if (intent.getAction().equals("android.basic.lesson21.Hello88")) {
Log.i("HelloBroadReciever","Say Hello to Yaoyao !!!!!!!!!!!!!!!!!!!!!!!!!");
Log.i("HelloBroadReciever", intent.getStringExtra("yaoyao"));
}
Log.i("HelloBroadReciever","onReceive**********");
// 播放一首音樂
// MediaPlayer.create(context, R.raw.babayetu).start();
}
}
第二種方式,直接在代碼中實現,但須要手動註冊註銷,實現以下:(以短信接收爲例)
IntentFilter filter = new IntentFilter();
filter.addAction("android.provider.Telephony.SMS_RECEIVED");
registerReceiver(mEvtReceiver, filter); //這時註冊了一個recevier ,名爲mEvtReceiver,而後一樣用上面的方法以重寫onReceiver,
最後在程序的onDestroy中要註銷廣播,實現以下:
@Override
public void onDestroy() {
super.onDestroy();
unregisterReceiver(mPlayerEvtReceiver);
}
以短信接收爲例:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.basic.lesson21"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="5" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainBroadcastReceiver"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
</manifest>
增長一個短信權限<uses-permission android:name="android.permission.RECEIVE_SMS"/>
package android.basic.lesson21;
import android.app.Activity;
import android.content.IntentFilter;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
public class MainBroadcastReceiver extends Activity {
/** Called when the activity is first created. */
HelloBroadReciever br;
@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) {
Log.i("click","OnClick");
br=new HelloBroadReciever();
IntentFilter filter=new IntentFilter();
filter.addAction("android.provider.Telephony.SMS_RECEIVED");
registerReceiver(br, filter);
}
});
}
@Override
public void onDestroy() {
super.onDestroy();
unregisterReceiver(br);
Log.i("br","onDestroy");
}
}
package android.basic.lesson21;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class HelloBroadReciever extends BroadcastReceiver {
public HelloBroadReciever(){
System.out.println("HelloBroadReciever");
}
// 若是接收的事件發生
@Override
public void onReceive(Context context, Intent intent) {
// 對比Action決定輸出什麼信息
if (intent.getAction().equals("android.provider.Telephony.SMS_RECEIVED")) {
Log.i("HelloBroadReciever","SMS_RECEIVED !!!!!!!!!!!!!!!!!!!!!!!!!");
}
Log.i("HelloBroadReciever","onReceive**********");
}
}
先按開始鍵註冊廣播,而後在Emulator Control設置發短信如圖:
按Send,這時HelloBroadReciever的onReceive響應
輸出SMS_RECEIVED !!!!!!!!!!!!!!!!!!!!!!!!!
onReceive**********"信息。
一個廣播接收者有一個回調方法:void onReceive(Context curContext, Intent broadcastMsg)。當一個廣播消息到達接收者是,Android調用它的onReceive()方法並傳遞給它包含消息的Intent對象。廣播接收者被認爲僅當它執行 這個方法時是活躍的。當onReceive()返回後,它是不活躍的。
有一個活躍的廣播接收者的進程是受保護的,不會被殺死。可是系統能夠在任什麼時候候殺死僅有不活躍組件的進程,當佔用的內存別的進程須要時。
這帶來一個問題,當一個廣播消息的響應時費時的,所以應該在獨立的線程中作這些事,遠離用戶界面其它組件運行的主線程。若是onReceive()衍生線程而後返回,整個進程,包括新的線程,被斷定爲不活躍的(除非進程中的其它應用程序組件是活躍的),將使它處於被殺的危機。解決這個問題的方法是onReceive()啓動一個服務,及時服務作這個工做,所以系統知道進程中有活躍的工做在作。