android kitkat 中的广播接收器未在启动时完成接收
Broadcast Receiver not receiving on boot complete in android kitkat
在 kitkat 4.4.4 设备中启动后无法正常工作.. 请帮助.. 即使我 运行 安装后应用程序一次没有启动,然后启动,但结果相同。
ANdroidManifes.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.snaha.reminder1" >
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:process=":remote" android:name="AlarmReceiver"></receiver>
<receiver
android:name="com.example.snaha.reminder1.onBootComplete"
android:enabled="true"
android:exported="true"
android:label="onBootComplete">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<activity
android:name=".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>
</application>
这是我的 onBootComplete class
public class onBootComplete extends BroadcastReceiver {
public void onReceive(Context content,Intent intent) {
PendingIntent mAlarmSender=null;
Toast.makeText(context, "Alarm Set"+"OnBoot", Toast.LENGTH_SHORT).show();
String dose=null;
String category=null;
}
}
在接收器的 intent-filter 中添加以下内容
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
问题解决了,我在 SD 卡上安装了应用程序,它在 Boot Receiver 上支持 dsnt!,我在 phone 内存中重新安装它并且成功了! :)
在 kitkat 4.4.4 设备中启动后无法正常工作.. 请帮助.. 即使我 运行 安装后应用程序一次没有启动,然后启动,但结果相同。 ANdroidManifes.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.snaha.reminder1" >
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:process=":remote" android:name="AlarmReceiver"></receiver>
<receiver
android:name="com.example.snaha.reminder1.onBootComplete"
android:enabled="true"
android:exported="true"
android:label="onBootComplete">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<activity
android:name=".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>
</application>
这是我的 onBootComplete class
public class onBootComplete extends BroadcastReceiver {
public void onReceive(Context content,Intent intent) {
PendingIntent mAlarmSender=null;
Toast.makeText(context, "Alarm Set"+"OnBoot", Toast.LENGTH_SHORT).show();
String dose=null;
String category=null;
}
}
在接收器的 intent-filter 中添加以下内容
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
问题解决了,我在 SD 卡上安装了应用程序,它在 Boot Receiver 上支持 dsnt!,我在 phone 内存中重新安装它并且成功了! :)