BroadcastReceiver靜態註冊案例詳解

BroadcastReceiver靜態註冊案例演示,供大傢參考,具體內容如下

靜態註冊與動態註冊的區別:

動態註冊:廣播接收器可以自由的控制註冊與取消,具有很大的靈活性。但隻有在應用程序啟動後才能收到廣播。並且動態註冊的廣播接收器的生命周期與其對應的Acitivity的生命周期是一致的。
靜態註冊:又叫做清單註冊,即在AndroidManifest.xml中進行註冊。靜態註冊的廣播不受程序是否啟動的約束,當應用程序關閉後,還可以接收到廣播。

效果圖:

代碼:

MainActivity.java

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        findViewById(R.id.btn).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //Intent intent = new Intent("com.example.action.MY_BROADCAST");
                //sendBroadcast(intent);
                //Android 8.0後不再支持以上這種方式
                //需采用指定包名或組件名的形式,即顯式Intent

                //1.指定包名
                //Intent intent = new Intent();
                //intent.setAction("com.example.action.MY_BROADCAST");
                //intent.setPackage("com.example.a02staticregister");
                //sendBroadcast(intent);

                //2.指定組件名,依據intent的Component屬性
                Intent intent = new Intent();
                intent.setComponent(new ComponentName(MainActivity.this,StaticReceiver.class));
                //也可簡寫成以下形式,常用寫法
                //Intent intent = new Intent(MainActivity.this,StaticReceiver.class);
                sendBroadcast(intent);
            }
        });
    }
}

StaticReceiver.java

public class StaticReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        Toast.makeText(context,"StaticReceiver收到廣播瞭~~",Toast.LENGTH_LONG).show();
    }
}

AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.a02staticregister">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.BroadcastRecetiverTest">
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
        <receiver android:name=".StaticReceiver"
            android:exported="true">
            <intent-filter>
                <action android:name="com.example.action.MY_BROADCAST"/>
            </intent-filter>
        </receiver>
    </application>

</manifest>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="發送自定義廣播"/>

</LinearLayout>

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: