因此,我目前使用JobScheduler
根据各种条件来计划作业,并且我想我想使用JobIntentService
执行它们。但是,我看到JobIntentService
也有一个enqueueWork()
方法。这是JobScheduler
的替代品吗?它是可选的,所以我可以忽略它,而仅使用JobScheduler
安排任务并让JobIntentService
只担心执行吗?
谢谢。
最佳答案
为什么使用JobScheduler
运行JobIntentService
?
根据官方文档JobIntentService will be subject to standard JobScheduler policies for a Job with a setOverrideDeadline(long) of 0
,您不能对其应用其他JobScheduler's
选项。
您必须使用它自己的enqueueWork
方法来运行它,
enqueueWork(applicationContext, Intent(applicationContext, MyJobIntentService::class.java))
您的服务可以通过以下方式开发:
class MyJobIntentService : JobIntentService() {
val TAG = "TAG_MyJobIntentService"
override fun onHandleWork(intent: Intent) {
// do your work here
Log.i(TAG, "Executing work: " + intent)
}
companion object {
internal val JOB_ID = 1000
internal fun enqueueWork(context: Context, work: Intent) {
JobIntentService.enqueueWork(context, MyJobIntentService::class.java, JOB_ID, work)
}
}
}
而且不要忘了把它放在你的清单上
<service
android:permission="android.permission.BIND_JOB_SERVICE"
android:exported="false"
android:name=".MyJobIntentService">
</service>
关于android - JobScheduler和JobIntentService,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46338439/