我想在重启设备后启动服务。我尝试使用下面的代码
if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
context.startService(new Intent(context, MyService.class))
}
这对HTC资源管理器设备无效,因为我没有获得BOOT_COMPLETED意图。
那么有没有其他方法在重新启动后启动服务而在android中使用BOOT_COMPLETED意图?
提前致谢
VANI