其他分享
首页 > 其他分享> > android-AIRPLANE_MODE的广播接收器无法与SDK 26一起使用

android-AIRPLANE_MODE的广播接收器无法与SDK 26一起使用

作者:互联网

通常,当用户更改AIRPLANE_MODE时,我使用一个简单的代码放置Toast,并且使用targetSdkVersion 25可以正常工作.

我的AirPlaneModeReceiver:

    public class AirPlaneModeReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {

        Toast.makeText(context, "I receive a Broadcast", Toast.LENGTH_SHORT).show();

    }
}

清单中我声明接收者的部分:

<receiver android:name=".AirPlaneModeReceiver">
            <intent-filter>
                <action android:name="android.intent.action.AIRPLANE_MODE"/>
            </intent-filter>
</receiver>

但是当我将目标SDK版本更改为targetSdkVersion 26时,它根本无法工作…
为什么呢

解决方法:

根据文档:

您应该删除所有为隐式广播意图注册的广播接收器.

https://developer.android.com/about/versions/oreo/android-8.0-migration.html

请参阅“从清单文件中删除广播接收器”部分

标签:android-broadcast,android
来源: https://codeday.me/bug/20191111/2018186.html