Android注册广播

一、系统广播随着Android版本的变化

Android 14

Android 14(API level 34)

While apps are in a cached state, broadcast delivery is optimized for system health. For example, less important system broadcasts such as ACTION_SCREEN_ON are deferred while the app is in a cached state. Once the app goes from the cached state into an active process lifecycle, the system delivers any deferred broadcasts.

Important broadcasts that are declared in the manifest temporarily remove apps from the cached state for delivery.

Android 9

从Android 9 (API level 28)开始, 通知 NETWORK_STATE_CHANGED_ACTION 不再接收用户位置或者个人身份数据。

另外,App安装在Android 9 或者更高版本的手机上,WIFI的系统广播不再包含SSID,BSSID等连接信息或扫描结果。获取这些信息,需要调用getConnectionInfo()方法。

Android 8.0

从Android 8.0 (API level 26)开始,系统对在manifest中声明receiver做了额外的限制:

如果targetSdkVersion大于Android 8.0及以上版本(targetSdkVersion>=26),对于大部分"隐性广播"(implicit broadcasts)我们都不能在manifest中声明<receiver>来注册广播接收器。我们仍然可以使用registerReceiver(BroadcastReceiver, IntentFilter)注册广播接收器。

Android 7.0

Android 7.0 (API level 24) 及以上版本,不会发送以下系统广播:

groovy 复制代码
ACTION_NEW_PICTURE
ACTION_NEW_VIDEO

同样,targetSdkVersion指定为Android 7.0及以上版本的(targetSdkVersion>=24),必须使用

registerReceiver(BroadcastReceiver, IntentFilter)注册CONNECTIVITY_ACTION 广播.在manifest中声明<receiver>不会生效。

二、接受广播

有两种接受广播方式

1、在manifest中声明receivers

在manifest中声明广播receiver,当广播发出后,系统会启动我们的App(即便我们的App已经不再运行)

注意:如果我们的App设置targetSdkVersion>=26,对于隐性广播(implicit broadcasts)我们不能在manifest中声明receiver。
作者编写:既然Google已经意识到了在manifest中注册广播接收器,会启动我们的App存在安全风险,从API Level 26开始,就基本弃用manifest中注册的方式。

groovy 复制代码
<!-- If this receiver listens for broadcasts sent from the system or from
     other apps, even other apps that you own, set android:exported to "true". -->
<receiver android:name=".MyBroadcastReceiver" android:exported="false">
    <intent-filter>
        <action android:name="APP_SPECIFIC_BROADCAST" />
    </intent-filter>
</receiver>
java 复制代码
public class MyBroadcastReceiver extends BroadcastReceiver {
        private static final String TAG = "MyBroadcastReceiver";
        @Override
        public void onReceive(Context context, Intent intent) {
            StringBuilder sb = new StringBuilder();
            sb.append("Action: " + intent.getAction() + "\n");
            sb.append("URI: " + intent.toUri(Intent.URI_INTENT_SCHEME).toString() + "\n");
            String log = sb.toString();
            Log.d(TAG, log);

            ActivityNameBinding binding =
                    ActivityNameBinding.inflate(layoutInflater);
            val view = binding.root;
            setContentView(view);

            Snackbar.make(view, log, Snackbar.LENGTH_LONG).show();
        }
    }

2、基于Context注册广播receivers

groovy 复制代码
ContextCompat.registerReceiver(context, br, filter, receiverFlags);

unregisterReceiver(android.content.BroadcastReceiver)
相关推荐
Digitally16 小时前
4种方法在电脑上查看安卓短信
android·电脑
_李小白16 小时前
【Android FrameWork】第四十天:SamplingProfilerService
android
走在路上的菜鸟16 小时前
Android学Dart学习笔记第二十四节 类-可调用对象Class()()
android·笔记·学习·flutter
2501_9159214316 小时前
Flutter App 到底该怎么测试?如何在 iOS 上进行测试
android·flutter·ios·小程序·uni-app·cocoa·iphone
常利兵16 小时前
Kotlin Flow 从入门到实战:异步数据流处理的终极解决方案
android·kotlin
二流小码农16 小时前
鸿蒙开发:一个底部的曲线导航
android·ios·harmonyos
Kapaseker17 小时前
数据传参明妙理 临危受命逢转机
android·kotlin
2501_9159090617 小时前
如何在 Windows 上上架 iOS App,分析上架流程哪些是不用mac的
android·macos·ios·小程序·uni-app·iphone·webview
走在路上的菜鸟17 小时前
Android学Dart学习笔记第二十五节 类修饰符
android·笔记·学习·flutter
灵感菇_17 小时前
Android ContentProvider全面解析
android·通信·四大组件·contentprovider