【Android 系统开发】_“四大组件”篇 -- “动态广播” 和 “静态广播”
动态注册
Code
新建一个 BroadcastTest 项目,修改 MainActivity :
package com.example.marco.broadcasttest; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.Toast; public class MainActivity extends AppCompatActivity { private IntentFilter intentFilter; private NetworkChangeReceiver networkChangeReceiver; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); intentFilter = new IntentFilter(); intentFilter.addAction("android.net.conn.CONNECTIVITY_CHANGE"); networkChangeReceiver = new NetworkChangeReceiver(); registerReceiver(networkChangeReceiver, intentFilter); } @Override protected void onDestroy() { super.onDestroy(); unregisterReceiver(networkChangeReceiver); } private class NetworkChangeReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Toast.makeText(context, "network changes", Toast.LENGTH_LONG).show(); } } }
静态注册
“动态注册”的广播接收器可以自由地控制注册与注销,在灵活性方面有很大的优势,但是它也存在一个缺点:必须要在程序启动之后才能接收到广播,因为注册的逻辑是写在 onCreate() 方法中的。
那么有没有什么方法可以让程序在未启动的情况下就能接收到广播呢?这就是我们即将看到的“静态注册”方法了!
Code
(1)新建一个 BroadcastReceiver:
package com.example.marco.broadcasttest; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.widget.Toast; public class BootCompleteReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Toast.makeText(context, "Boot Complete", Toast.LENGTH_LONG).show(); } }
(2)静态广播接收器一定要在 AndroidManifest.xml 文件中注册才可以使用,如果你使用 Android Studio 快捷方式创建了这个广播接收器,那么系统会自动在 AndroidManifest.xml 中注册好这个广播接收器:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.marco.broadcasttest"> <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/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".BootCompleteReceiver" android:enabled="true" // 是否启用这个广播接收器 android:exported="true"></receiver> // 是否允许这个广播接收器接收本程序以外的广播 </application> </manifest>
(3)此时广播接收器还未能接收到开机广播,需要添加 Action 和 权限:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.marco.broadcasttest"> // 添加权限 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <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/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".BootCompleteReceiver" android:enabled="true" android:exported="true"> // 添加相应的 Action <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver> </application> </manifest>
相关推荐
hzq0 2020-10-05
Crazyshark 2020-09-05
willowwgx 2020-07-27
linjava 2020-06-14
tuxlcsdn 2020-06-13
池塘 2020-06-07
liqinglin0 2020-06-01
liqinglin0 2020-06-01
jvm 2020-05-30
deadgrape 2020-05-16
luohui 2020-05-15
一个逗逗 2020-04-16
Ericbig 2020-03-03
hellobabygogo 2020-02-21
morexyoung 2020-02-21
lmseohy 2020-02-21
doubinning 2020-02-18