广播接收器在android kitkat中未在启动时接收

时间:2015-04-19 14:49:37

标签: android android-intent broadcastreceiver bootcompleted

在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类

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;

    }
}

2 个答案:

答案 0 :(得分:1)

在接收器的intent-filter中添加以下内容

  <intent-filter>
      <action android:name="android.intent.action.BOOT_COMPLETED" />
      <action android:name="android.intent.action.QUICKBOOT_POWERON" />
 </intent-filter>

答案 1 :(得分:1)

解决了这个问题,我在SD卡上安装了应用程序,在启动接收器上支持dsnt!,我在手机内存中重新安装它并且它有效! :)