完成后杀死我的应用程序
如何在通话结束后终止我的应用程序?
(我可以在 HTC 手机中看到我的应用程序,但我还是完成了该活动)
How to kill my application after call finish?
(i can see my app in HTC's phone, but i finished that activity anyway)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确实没有必要这样做,Android 会自动决定何时终止应用程序。但是,如果需要,您可以使用以下方法杀死它:
There's really no need for this, Android automatically decides when to kill apps. However, you can, if you need to, kill it using:
this.finish() 可以正常终止我的应用程序。
您是否查看过 LogCat 以查看执行 finish() 时是否报告了任何内容?
this.finish() terminates my applications fine.
Have you looked in LogCat to see if anything is reported when you execute finish()??