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.
当活动在被系统杀死后恢复时(我的意思是应用程序进程被杀死,并且进程使用旧的活动堆栈重新启动),活动恢复旧的状态 - 是否可以清除此活动状态并从头开始重新启动活动。
只需检查当您的活动被杀死时调用哪个方法...onDestroy() 或 onPause(),很可能。当“杀死”您的活动时,您的活动实际上并没有被破坏,它被暂停,因此 onResume() 被执行,因为您的状态被保留了。要销毁您可以在 onPause() 方法中使用 finish() 的活动,请查看这篇文章以了解如何执行此操作。