在 Android 应用程序中完成/退出活动时出现问题

发布于 2024-12-07 00:50:40 字数 109 浏览 0 评论 0原文

我正在尝试使用代码退出活动

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 技术交流群。

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

发布评论

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

评论(1

開玄 2024-12-14 00:50:40

此代码只是通知运行时活动已完成,以便可以采取适当的操作并且不会保留活动。但这并不意味着立即中止。只需在必要的地方添加 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 put return where necessary.

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