工作,我目前工作的一個應用程序,它包括Boot_Completed廣播接收器的概念。我已經在我的摩托羅拉Moto G手機上測試過這個應用程序。該應用程序運行良好,並顯示Toast消息。但是當我在XIAOMI Redmi 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();
}
}
}
我怎樣才能解決這個問題?
你有什麼PACKAGE_NAME?和源MyReceiver包名稱? –
「com.example.demoapp」是我的PACKAGE_NAME。 @kalyanpvs –
面對與小米紅米1s相同的問題。 – Rohit