在 Android 上点击后退按钮时关闭应用程序

发布于 2024-11-05 15:09:54 字数 120 浏览 0 评论 0原文

所以我的登录活动是您看到的第一个屏幕。当您点击后退按钮时,它会退出应用程序,很好。所以我再次打开应用程序。登录后,我现在处于我的主要活动中。我该如何做到这一点,以便当我现在点击后退按钮时,它会退出应用程序而不是返回到登录活动?

So my login Activity is the first screen you see. When you hit the back button, it exits the app, good. So I open up the app again. After logging in, I am now in my main Activity. How do I make it so when I hit the back button now, it exits the app rather than going back to the login Activity?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-11-12 15:09:54

当您推送新活动时,请对前一个活动调用 finish() ,否则它将保留在堆栈中,因此当您回弹并弹出当前活动时会出现。

希望有帮助。

When you push the new activity, call finish() on the previous, otherwise it will remain on the stack, therefore appearing when you hit back and pop the current activity.

Hope that helps.

离线来电— 2024-11-12 15:09:54

试试这个
@覆盖
公共无效 onBackPressed() {

super.onBackPressed();
结束();

}

try this one
@Override
public void onBackPressed() {

super.onBackPressed();
finish();

}

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