BOOT_COMPLETED 无法正常工作

新手上路,请多包涵

首先,我知道已经问了数百个这样的问题,但是我已经检查了一段时间,仍然找不到任何解决方案。

我已经看到 这个答案 说 BOOT_COMPLETED 不会发送到应用程序,除非用户首先启动您的应用程序,在 Android 版本 3.1 之后但我仍然看到一些应用程序正在这样做,必须有办法。我真的需要处理它,否则我也反对在没有用户交互的情况下做某事。

所以这是我的 AndroidManifest:

 <manifest ... >

<!-- to be activated service on boot is completed -->
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />

<application ... >
    <!-- to receive data when boot completed -->
    <receiver
        android:name="myPackage.BootReceiver"
        android:enabled="true"
        android:exported="true"
        android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>
</application>

</manifest>

提前致谢。

编辑: 在我的广播接收器中没有什么可看的,但这里需要的是:

 package myPackage
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    Utils.LogI("BootReceiver", "BootReceiver received!");
    if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
        // Do my stuff
    }
}
}

原文由 yahya 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.5k
2 个回答

下面这件事对我有用

AndroidManifest.xml

 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<application>

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

    <service android:name="NotifyingDailyService" >
    </service>

BootCompletedReceiver.class

 public class BootCompletedReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent arg1) {
    // TODO Auto-generated method stub
    Log.w("boot_broadcast_poc", "starting service...");
    context.startService(new Intent(context, NotifyingDailyService.class));
}

}

服务类

 public class NotifyingDailyService extends Service {

@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public int onStartCommand(Intent pIntent, int flags, int startId) {
    // TODO Auto-generated method stub
    Toast.makeText(this, "NotifyingDailyService", Toast.LENGTH_LONG).show();
    Log.i("com.example.bootbroadcastpoc","NotifyingDailyService");

    return super.onStartCommand(pIntent, flags, startId);
}
}

原文由 Piyush 发布,翻译遵循 CC BY-SA 3.0 许可协议

如果您达到了这个答案并且其他答案似乎都不起作用,请仔细检查清单中的操作字符串。如果您在 action 标签中写入错误的字符串,AndroidStudio 不会显示任何错误。不要混淆代码中常量的名称,即 ACTION_BOOT_COMPLETED 与所述常量的 ,即清单中的值,等于 android.intent.action.BOOT_COMPLETED

TL;DR 检查清单中是否有此内容:

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

而不是这个:

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

原文由 Mister Smith 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题