BOOT COMPLETE 在 Android (Redmi) 中不工作
BOOT COMPLETE is not working in Android (Redmi)
我目前正在开发一个包含 Boot_Completed 广播接收器概念的应用程序。我已经在我的 Motorola Moto G Phone 中测试了这个应用程序。该应用程序运行良好并显示 Toast 消息。但是当我在 XIAOMI Redmi 1S phone 中测试这个应用程序时,它没有显示 Toast 消息。
我已经看到很多与我的问题类似的问题(比如这些 - Question 1, Question 2,等等)......但是我还没有解决这个问题。
我的清单:
<?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();
}
}
}
我该如何解决这个问题?
如果是小米设备,你必须手动设置权限,我想你可以通过将你的应用程序添加到“自动启动管理”列表中来解决这个问题,该列表可作为默认安全应用程序使用。
去管理应用权限
Select 您的应用来自应用
切换"Auto-Start"
完成
尝试从广播接收器中删除 if 条件
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "Boot Complete.", Toast.LENGTH_LONG).show();
}
}
这是针对您的错误的解决方案。
您需要做的是,您还需要在 Intent-Filter 中提及此权限。
<receiver android:name="com.example.demoapp.MyReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter >
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.REBOOT"/>
</intent-filter>
</receiver>
这里你还需要做一件事
在您的设备
中转到 "Settings-Apps_open your app info-Manage permisson"
在这里检查所有的东西。
因为某些设备无法使用。
Ex.Red 英里
试试这个!
我目前正在开发一个包含 Boot_Completed 广播接收器概念的应用程序。我已经在我的 Motorola Moto G Phone 中测试了这个应用程序。该应用程序运行良好并显示 Toast 消息。但是当我在 XIAOMI Redmi 1S phone 中测试这个应用程序时,它没有显示 Toast 消息。
我已经看到很多与我的问题类似的问题(比如这些 - Question 1, Question 2,等等)......但是我还没有解决这个问题。
我的清单:
<?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();
}
}
}
我该如何解决这个问题?
如果是小米设备,你必须手动设置权限,我想你可以通过将你的应用程序添加到“自动启动管理”列表中来解决这个问题,该列表可作为默认安全应用程序使用。
去管理应用权限
Select 您的应用来自应用
切换"Auto-Start"
完成
尝试从广播接收器中删除 if 条件
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "Boot Complete.", Toast.LENGTH_LONG).show();
}
}
这是针对您的错误的解决方案。
您需要做的是,您还需要在 Intent-Filter 中提及此权限。
<receiver android:name="com.example.demoapp.MyReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter >
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.REBOOT"/>
</intent-filter>
</receiver>
这里你还需要做一件事
在您的设备
中转到 "Settings-Apps_open your app info-Manage permisson"在这里检查所有的东西。
因为某些设备无法使用。 Ex.Red 英里
试试这个!