如何销毁我的应用程序?

发布于 2024-12-07 10:59:01 字数 111 浏览 0 评论 0原文

当我退出应用程序时,我的应用程序始终显示在任务管理器中。我该如何摧毁它?我使用了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

用心笑 2024-12-14 10:59:01

除非需要,Android 不会销毁应用程序。有关更多详细信息,请参阅此答案:退出应用程序会让人皱眉吗?

Android does not destroy applications unless it needs to. See this answer for more details: Is quitting an application frowned upon?

傲影 2024-12-14 10:59:01

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.

陌路黄昏 2024-12-14 10:59:01

这不是问题。这就是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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文