Android8.0静态广播适配

项目中使用静态广播,遇到收不到消息的问题,最终发现问题:Android4.4、6.0、7.0正常接收,到Android8.0的系统之后,发现接收不到,于是看了谷歌API文档,发现做了限制。附上地址。

大致的意思是:如果应用注册为接收广播,则在每次发送广播时,应用的接收器都会消耗资源。 如果多个应用注册为接收基于系统事件的广播,则会引发问题:触发广播的系统事件会导致所有应用快速地连续消耗资源,从而降低用户体验。

解决方法:

1、使用动态广播代替静态广播。

/**
 * 注册广播:定义当前广播唯一的action
 * <p>
 * 一般在onCreate中调用
 */
private void registerReceiver() {
    IntentFilter filter = new IntentFilter("android.intent.action.yourAction");
    registerReceiver(myReceiver, filter);
}

/**
 * 注销广播:在onDestroy中调用
 */
private void unregisterReceiver() {
    unregisterReceiver(myReceiver);
}

/**
 * 发送广播
 */
private void unregisterReceiver() {
Intent intent = new Intent("android.intent.action.youraction");
intent.putExtra("DataJson", json);
sendBroadcast(intent);
}

2、使用Intent添加参数的方法,把广播注册做的和Android6.0系统一样。

<receiver android:name=".base.PushReceiver">
    <intent-filter>
        <action android:name="android.intent.action.push_message_handler" />

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</receiver>

Intent intent = new Intent("android.intent.action.push_message_handler");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    intent.setComponent(new ComponentName("PackageName", "PackageName.base.PushReceiver"));
}
intent.putExtra("DataJson", json);
sendBroadcast(intent);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值