我目前正在开发一个包含 Boot_Completed 广播接收器概念的应用程序。我已经在我的摩托罗拉 Moto G手机中测试了这个应用程序。该应用程序运行良好并显示 Toast 消息。但是当我在小米红米 1S手机上测试这个应用程序时,它没有显示 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();
}
}
}
我该如何解决这个问题?