如何销毁我的应用程序?
当我退出应用程序时,我的应用程序始终显示在任务管理器中。我该如何摧毁它?我使用了 onDestroy()
方法,但它仍然在运行。我正在使用警报管理器和一些数据库操作;这是问题所在吗?
My application is always showing in Task Manager when I exit from my application. How do I destroy it? I used the onDestroy()
method, but still it is running. I am using alarm manager and some database operations; is that the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除非需要,Android 不会销毁应用程序。有关更多详细信息,请参阅此答案:退出应用程序会让人皱眉吗?
Android does not destroy applications unless it needs to. See this answer for more details: Is quitting an application frowned upon?
System.exit(0)
将完成这项工作。但是,根本不建议这样做。 Android 会进行一些缓存和保存状态,以便在您下次启动应用程序时更快地重新启动您的应用程序。所以您不想浪费时间。System.exit(0)
will do the job. However, it is not at all recommended. Android does some caching, and saving state, so as to relaunch your appp quicker, the next time you launch it.. so you do not want to be messing around with that.这不是问题。这就是android的工作原理,终止应用程序是由os完成的。但如果你想杀死它,那么你可能必须
杀死该进程。
Its not a problem. thats how android works, terminating Application is done by os. But if you want to kill it then you may have to
kill the process.