Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android操作系统会IntentService在正常情况下杀死我还是我需要担心任何变量被重置?
IntentService
Android OS在正常情况下会杀死我的IntentService吗
是的。当操作系统一时兴起没有等待意图时,IntentServices 将被暂停、停止和销毁。
我需要担心任何变量被重置吗?
不保证保留变量值。您应该使用 onCreate 来配置服务的初始状态,根据我的经验,如果您不在服务的生命周期之外维护状态,它的效果最好。