Android 任务杀手
我的应用程序的用户抱怨它没有保存状态。我发现他们在完成应用程序后正在使用任务杀手。我知道从 Android 2.2 开始就可以了。在这种情况下我可以采取什么措施来保存状态?或者任务杀手是否过于残酷而我们无法采取任何措施来缓解这种情况?
Users of my app are complaining that it is not saving state. I found out they are using task killers after finishing from the app. I know since Android 2.2 its ok. What can I implement to still save state in this scenario? Or are the task killers too brutally and we are unable to implement anything to mitigate this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自
Activity
文档:From the
Activity
docs:最好的办法是制作一个菜单退出按钮并调用 finish();它通过调用暂停、停止然后销毁来优雅地关闭应用程序。然后,在用户看来,它不再使用空间并且游戏被保存。
The best thing is to make a menu exit button and call finish(); which gracefully shutsdown the app by calling pause, stop and then destroy. Then in the users mind it is no longer using space and the game is saved.