即使使用工作管理器终止了应用程序,我也想执行任务。但是,该应用程序被杀死后,该任务不会执行。
workManager = WorkManager.getInstance();
Constraints constraints = new Constraints.Builder().setRequiredNetworkType(NetworkType.CONNECTED).build();
OneTimeWorkRequest saveData = new OneTimeWorkRequest.Builder(SaveDataWorker.class).setConstraints(constraints).setInitialDelay(10,TimeUnit.SECONDS).build();
workManager.enqueue(saveData);
答案 0 :(得分:0)
我发现,工作经理取决于设备制造商。就我而言,这是一个miui设备,如果该应用被终止或重启,它不允许工作管理器工作。当我为应用程序提供“自动启动权限”时,工作经理便开始工作。
答案 1 :(得分:0)
工作管理器完全取决于制造商,有些制造商,或者您也可以说带有备用ROM的设备允许工作管理器按其应有的方式工作,但是有些设备制造商(“中国ROM”)在清理时非常积极后台应用程序,它们甚至杀死了工作经理,但是Google试图通过与OEM的沟通使工作经理在所有设备上正常工作。
到目前为止,如果您真的想在后台运行任何内容,则可以在小米和某些其他设备上打开自动启动选项,否则也可以在通知栏中显示通知,使应用程序在前台运行。您可以检查该应用程序是否仍在后台运行,如果没有,则可以重新启动它。
if (!isServiceRunning(this, MyService::class.java)) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(Intent(this, MyService::class.java))
} else {
startService(Intent(this, MyService::class.java))
}
}
private fun isServiceRunning(context: Context, serviceClass: Class<*>): Boolean {
val activityManager = context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager
val services = activityManager.getRunningServices(Integer.MAX_VALUE)
if (services != null) {
for (i in services.indices) {
if (serviceClass.name == services[i].service.className && services[i].pid != 0) {
return true
}
}
}
return false
}
val am = getSystemService(Context.ALARM_SERVICE) as AlarmManager
val pi = PendingIntent.getBroadcast(
applicationContext,
34,
Intent(this, MyBroadcastReceiver::class.java),
PendingIntent.FLAG_UPDATE_CURRENT
)
am.setExact(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 10000, pi)
最后在广播接收器中。
override fun onReceive(context: Context?, intent: Intent?) {
Handler(Looper.getMainLooper()).post {
if (!isServiceRunning(context!!, MyService::class.java)) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startForegroundService(Intent(context, MyService::class.java))
} else {
context.startService(Intent(context, MyService::class.java))
}
}
val am = context.getSystemService(Context.ALARM_SERVICE) as AlarmManager
val pi = PendingIntent.getBroadcast(
context, 34, Intent(context, MyBroadcastReceiver::class.java),
PendingIntent.FLAG_UPDATE_CURRENT
)
am.setExact(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 5000, pi)
}
}