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.
你能建议我如何让我的应用程序不会暂停吗?谢谢
不幸的是,您基本上无法控制主要活动的状态。 onPause()只要您的应用程序失去前台,就会被调用。您可以查看此处以大致了解生命周期是如何工作的。即使您的应用程序在后台,您也可以使用服务继续执行任务。随时onPause()调用保存状态也是一个好主意。这样用户可以顺利恢复您的应用程序,即使它最终被操作系统杀死。
onPause()