您好,登錄后才能下訂單哦!
一:Android 廣播的生命周期
一個廣播接收者有一個回調方法:void onReceive(Context curContext, Intent broadcastMsg)。當一個廣播消息到達接收者是,Android調用它的onReceive()方法并傳遞給它包含消息的Intent對象。廣播接收者被認為僅當它執行這個方法時是活躍的。當onReceive()返回后,它是不活躍的。
有一個活躍的廣播接收者的進程是受保護的,不會被殺死。但是系統可以在任何時候殺死僅有不活躍組件的進程,當占用的內存別的進程需要時。
這帶來一個問題,當一個廣播消息的響應時費時的,因此應該在獨立的線程中做這些事,遠離用戶界面其它組件運行的主線程。如果onReceive()衍生線程然后返回,整個進程,包括新的線程,被判定為不活躍的(除非進程中的其它應用程序組件是活躍的),將使它處于被殺的危機。解決這個問題的方法是onReceive()啟動一個服務,及時服務做這個工作,因此系統知道進程中有活躍的工作在做。
Broadcast Receive為廣播接收器,它和事件處理機制類似,只不過事件的處理機制是程序組件級別的,廣播處理機制是系統級別的。
Broadcast Receiver用于接收并處理廣播通知(broadcast announcements)。多數的廣播是系統發起的,如地域變換、電量不足、來電來信等。程序也可以播放一個廣播。程序可以有任意數量的 broadcast receivers來響應它覺得重要的通知。broadcast receiver可以通過多種方式通知用戶:啟動activity、使用NotificationManager、開啟背景燈、振動設備、播放聲音等,最典型的是在狀態欄顯示一個圖標,這樣用戶就可以點它打開看通知內容。
通常我們的某個應用或系統本身在某些事件(電池電量不足、來電來短信)來臨時會廣播一個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()啟動一個服務,及時服務做這個工作,因此系統知道進程中有活躍的工作在做。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。