安卓背部问题

发布于 2024-10-31 05:14:53 字数 246 浏览 0 评论 0原文

我有三个活动,从 A 到 B,从 B 到 C。我使用以下代码从一个活动转移到另一个活动。

Intent intent = new Intent().setClass(this, B.class);
startActivity(intent);

我希望当我使用后退按钮时,如果它在C处,它应该到达B(这对我来说没问题),但是如果我在B活动中使用后退按钮,它不应该转到A,它应该直接出去该应用程序。可以怎样安排呢?

I have three activities, from A it is going to B, from B it is going to C. I am using following code to transfer from one activity to another.

Intent intent = new Intent().setClass(this, B.class);
startActivity(intent);

I want that when I use the back button, it should come to B if it is at C(which is ok for me), but if I use back button at B activity, it should not go to A, it should directly go out the application. How it can be arranged?

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

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

发布评论

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

评论(4

木槿暧夏七纪年 2024-11-07 05:14:54

在类 A 中,您可以输入:

Intent intent = new Intent(this, B.class);
startActivity(intent);
finish();

这将从活动堆栈中删除类 A。

In class A you would put:

Intent intent = new Intent(this, B.class);
startActivity(intent);
finish();

This will remove class A from the Activity stack.

白衬杉格子梦 2024-11-07 05:14:53

就这样吧

 @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if ((keyCode == KeyEvent.KEYCODE_BACK)) {
            this.finish();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }

There you go

 @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if ((keyCode == KeyEvent.KEYCODE_BACK)) {
            this.finish();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }
别闹i 2024-11-07 05:14:53

调用完成();
当您从活动 A 启动活动 B 时

call finish();
when you launch the activity B from the activiy A

相对绾红妆 2024-11-07 05:14:53

重写 Activity 类中的成员函数 onBackPressed()

例子:

public void onBackPressed() {
    Intent intent = new Intent().setClass(this, B.class);
    startActivity(intent);
}

Override the member function onBackPressed() inside your Activity class.

Example:

public void onBackPressed() {
    Intent intent = new Intent().setClass(this, B.class);
    startActivity(intent);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文