在 Android 应用程序中完成/退出活动时出现问题
我正在尝试使用代码退出活动
myClass.this.finish();
但是,代码在此之后继续执行行。
知道为什么吗?
I am trying to exit an activity using the code
myClass.this.finish();
However, the code keeps on executing the lines after this.
Any idea why ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此代码只是通知运行时活动已完成,以便可以采取适当的操作并且不会保留活动。但这并不意味着
立即中止
。只需在必要的地方添加return
即可。This code just informs runtime that activity is finished so appropriate actions could be taken and activity is not preserved. But it does not mean
immediate abort
. Just putreturn
where necessary.