Android 警报对话框强制关闭
有没有办法构建一个带有“强制关闭”按钮来关闭应用程序的警报对话框?
谢谢
Is there any way to build an Alert Dialog with a Button "Force Close" that close the app?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的活动生命周期。
如果您总是在开始新活动后完成活动,则只需创建一个带有一个按钮的对话框,然后单击该按钮,只需调用 finish() 即可。
一般的“关闭整个应用程序”并不是生命周期应该使用的方式。
That depends on you activity life cycle.
If you always finish your activities after starting a new one, you can simply create a dialog with one button and on click of the button, you simply call finish() and thats it.
A general "close the whole application" is not how the life cycle should be used.