如何在重启后启动服务而不在android中使用BOOT_COMPLETED意图?

时间:2012-05-04 12:50:12

标签: android service android-intent reboot

我想在重启设备后启动服务。我尝试使用下面的代码

if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
    context.startService(new Intent(context, MyService.class))
}

这对HTC资源管理器设备无效,因为我没有获得BOOT_COMPLETED意图。

那么有没有其他方法在重新启动后启动服务而在android中使用BOOT_COMPLETED意图?

提前致谢

VANI

0 个答案:

没有答案