Android四大組件之BroadcastReceiver

來源:互聯網
上載者:User

標籤:android   broadcastreceiver   有序   無序   


BroadcastReceiver:廣播接收器,是一個專註於接收廣播通知資訊,並做出對應處理的組件

1、應用程式可以擁有任意數量的廣播接收器以對所有它感興趣的通知資訊予以響應。所有的接收器均繼承自BroadcastReceiver基類

 2、廣播接收器沒有使用者介面。然而,它們可以啟動一個activity來響應它們收到的資訊,或者用NotificationManager來通知使用者。通知可以用很多種方式來吸引使用者的注意力──閃動背燈、震動、播放聲音等等。一般來說是在狀態列上放一個持久的表徵圖,使用者可以開啟它並擷取訊息

 3、 Android中的廣播事件有兩種:

1)系統廣播事件,比如:ACTION_BOOT_COMPLETED(系統啟動完成後觸發),ACTION_TIME_CHANGED(系統時間改變時觸發),ACTION_BATTERY_LOW(電量低時觸發)等等2)我們自訂的廣播事件。

 

4、 廣播時間流程:

1)註冊廣播事件:註冊方式有兩種,

一種是靜態註冊,就是在AndroidManifest.xml檔案中定義,註冊的廣播接收器必須要繼承BroadcastReceiver;靜態註冊的廣播,在程式結束時,仍會監聽符合的action

 另一種是動態註冊,是在程式中使用Context.registerReceiver註冊,註冊的廣播接收器相當於一個匿名類。兩種方式都需要IntentFIlter。

2)發送廣播事件:通過Context.sendBroadcast來發送,由Intent來傳遞註冊時用到的Action。

 3)接收廣播事件:當發送的廣播被接收器監聽到後,會調用它的onReceive()方法,並將包含訊息的Intent對象傳給它。

 注意:onReceive中代碼的執行時間不要超過5s,否則Android會彈出逾時dialog。


5、廣播的生命週期

 一個BroadcastReceiver 對象只有在被調用onReceive(Context, Intent)的才有效,

  當從該函數返回後,該對象就無效的了,結束生命週期


下面通過代碼來實現廣播的註冊與發送、接收廣播

首先定義一個廣播接收器,建立一個類(MyReceiver)繼承BroadcastReceiver,實現其onReceive()方法

package com.BroadcastReceive.Archer;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.widget.Toast;public class MyReceiver extends BroadcastReceiver {@Overridepublic void onReceive(Context context, Intent intent) {String action = intent.getAction();if (action.equals("com.action.text")) {String msg = intent.getStringExtra("msg");Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();}}}

一個廣播接收器可以接收來自四面八方發出的訊息,所以可以在onReceive中通過intent.getAction判斷接收到的action來進行不同的操作,action為系統的action或者我們自訂的action


然後需要註冊廣播了,有兩種註冊方式

靜態註冊

 <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme" >        <activity            android:name=".MainActivity"            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=".MyReceiver" >            <intent-filter>                <action android:name="com.action.text" /> //自訂的action,為一個字串            </intent-filter>        </receiver>    </application>


動態註冊:

private MyReceiver receiver = new MyReceiver(); //執行個體化廣播接收器
    //動態註冊廣播    IntentFilter filter = new IntentFilter();    filter.addAction("com.action.text");    registerReceiver(receiver, filter);

在Activity或Service中註冊了一個BroadcastReceiver(動態註冊),

當這個Activity或Service被銷毀時如果沒有解除註冊,系統會報一個異常

我們可以在onStop()或者onDestroy()中進行解除註冊

@Override  protected void onDestroy() {      super.onDestroy();      unregisterReceiver(receiver);  }


發送廣播

Intent intent = new Intent();intent.setAction("com.action.text");//為廣播時間設定actionintent.putExtra("msg", "接收廣播成功");sendBroadcast(intent);

如果我們需要在發送廣播的同時,進行資料傳遞,可以通過intent來傳遞


無序廣播:

當發出廣播時,所有有註冊這個action的廣播接收器均會接收到這個廣播事件,且執行無先後順序,相互之間不會有影響;沒有註冊則不會接收到


有序廣播

當有多一個廣播接收器註冊這個action,且我們需要給他們設定接收的順序時,這時候就要用到有序廣播。

有序廣播比較特殊,它每次只發送到優先順序較高的接收器那裡,然後由優先順序高的接收器再傳播到優先順序低的接收器那裡,優先順序高的接收者有能力終止這個廣播。

先定義兩個廣播接收器,FirstReceiver為優先順序較高的接收器

public class FirstReceiver extends BroadcastReceiver {@Overridepublic void onReceive(Context context, Intent intent) {String action = intent.getAction();if (action.equals("action")) {String msg = intent.getStringExtra("msg");Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();Bundle bundle = new Bundle();bundle.putString("msg", "來自第一個廣播接收器的訊息");setResultExtras(bundle); //將一個Bundle對象設定為結果集對象,傳遞到下一個接收者那裡}}}
public class SecondReceiver extends BroadcastReceiver {@Overridepublic void onReceive(Context context, Intent intent) {String action = intent.getAction();if (action.equals("action")) {String msg = getResultExtras(true).getString("msg"); //用getResultExtras擷取到經過處理的資訊Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();}}}

註冊廣播時,需要給設定優先權 android:priority

        <receiver             android:name=".FirstReceiver">            <intent-filter                 android:priority="1000">  //這個屬性的範圍在-1000到1000,數值越大,優先順序越高                <action android:name="com.action.text"/>            </intent-filter>        </receiver>
        <receiver             android:name=".FirstReceiver">            <intent-filter                 android:priority="1000">  //這個屬性的範圍在-1000到1000,數值越大,優先順序越高                <action android:name="com.action.text"/>            </intent-filter>        </receiver>
        <receiver             android:name=".SecondReceiver">            <intent-filter                 android:priority="999">                <action android:name="com.action.text"/>            </intent-filter>        </receiver>

發送有序廣播

Intent intent = new Intent();  intent.setAction("com.action.text");    intent.putExtra("msg", "來自Activity的訊息");      sendOrderedBroadcast(intent, "scott.permission.MYBROADCAST");
使用發送有序廣播,第二個參數為自訂許可權,為null時,表示不需要聲明指定許可權;不為空白,表示需要聲明指定許可權,聲明如下許可權<permission android:protectionLevel="normal"              android:name="scott.permission.MYBROADCAST" />            <uses-permission android:name="scott.permission.MYBROADCAST" />

這有發出廣播時,優先順序最高的接收器就會先接收到廣播,然後再依次傳遞給優先順序較低的接收器

如果我們需要在某一個接收器中終止廣播,可以在onReceiver()中調用如下代碼

abortBroadcast();


Android四大組件之BroadcastReceiver

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.