【发布时间】:2017-08-28 15:10:25
【问题描述】:
如何取消JobIntentService?除了 JobSheduler API 和 Context#stopService(...) 方法之外,我在文档中看不到这样做的方法,我不确定这是否是正确的方法。
【问题讨论】:
-
在 Android 8.0 之前,
JobIntentService被实现为IntentService。虽然您可以使用stopService()来销毁IntentService,但这可能不会影响用于onHandleIntent()的后台线程(我从未尝试过)。
标签: android android-support-library