gpt4 book ai didi

android - BOOT COMPLETE 在 Android (Redmi) 中不工作

转载 作者:太空狗 更新时间:2023-10-29 15:33:25 25 4
gpt4 key购买 nike

我目前正在开发一个包含 Boot_Completed 广播接收器概念的应用程序。我已经在我的 Motorola Moto G 手机上测试了这个应用程序。该应用程序运行良好并显示 Toast 消息。但是当我在 XIAOMI Redmi 1S 手机上测试这个应用程序时,它没有显示 Toast 消息。

我已经看到很多与我的问题类似的问题(比如这些 - Question 1Question 2 等)......但是我还没有解决这个问题的办法。

我的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demoapp"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="internalOnly" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.demoapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.example.demoapp.MyReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter >
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest>

MyReceiver.java

public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if ("android.intent.action.BOOT_COMPLETED".equalsIgnoreCase(intent.getAction())) {
Toast.makeText(context, "Boot Complete.", Toast.LENGTH_LONG).show();
}
}
}

我该如何解决这个问题?

最佳答案

如果是 XIOMI 设备,您必须手动设置权限,我认为您可以通过将您的应用添加到“自动启动管理”列表中来解决此问题,该列表作为默认安全应用提供。

关于android - BOOT COMPLETE 在 Android (Redmi) 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27792615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com