android 中的 IntentService

IntentService in android

请不要将我的问题标记为无关紧要、重复等

我要清点

在 Whosebug 的回答之一-->

这个用户这么说

The job given to the IntentService would get lost when the application is killed

并在其中一个站点中 --> https://guides.codepath.com/android/starting-background-services

这个博客说 -->

The IntentService class used to be the way for running an operation on a single background thread. IntentService runs outside the application in a background process, so the process would run even if your application is closed.

谢谢需要澄清

自 Android 8.0 IntentService 更改后,系统可以在认为必要时终止您的后台进程,现在,自 API 30 起,它已被弃用。

如果您想要在应用关闭时继续存在的内容,请考虑使用 WorkManager 或 JobIntentService。