在 Android 中暂停应用程序
我的 Android 应用程序中有一个按钮,我希望按下该按钮应该同时停止应用程序。再次单击同一按钮应恢复应用程序。
如何做到这一点?
I am having a buttong in my Android App and I want that pressing that button should stop the application at the same point. While clicking again on the same button should resume the App.
How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你问错了问题。您永远不应该手动暂停和恢复您的应用程序,这是由系统为您做的。
You are asking the wrong question. You should never pause and resume your app manually, that's for the system to do for you.
你的应用程序有什么作用?无论如何,您都必须存储并重新创建应用程序状态。您可以将其存储在文件、SharedPreferences 或 SQLite 数据库中。
What does your application do? In any case, you will have to store and re-create your application state. You can store it in a file, SharedPreferences or an SQLite database.