我的应用程序无法正确关闭,我不知道为什么

发布于 2024-12-06 19:42:41 字数 651 浏览 1 评论 0原文

首先,我使用操作栏。当我按“主页”选项后返回主类,然后按“后退”按钮时,我的应用程序不会像应有的那样关闭。相反,它尝试打开它离开的活动,但由于我正在调用 finish(),它只是像切换活动一样进行动画处理,然后显示我的主类。之后,我可以按“后退”按钮并正确关闭应用程序。如果我不按“主页”选项并使用第二个活动中的“后退”按钮,则一切都会按预期进行。

意图返回我的主课程。

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case android.R.id.home:
        Intent intent = new Intent(First.this, Second.class);
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
        startActivity(intent);
        finish();

    }
    return super.onOptionsItemSelected(item);
}

First off, I'm using the Action Bar. When I go back to my Main class after pressing the Home option, then press the Back button, my app won't close like it should. Instead, it tries to open the activity it left from, but since I'm calling finish(), it just animates like it's switching activities and then shows my Main class. After this, I can press the Back button and properly close the app. If I don't press the Home option and use the Back button from my second activity, everything works like it should.

Intent leading back to my Main class.

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case android.R.id.home:
        Intent intent = new Intent(First.this, Second.class);
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
        startActivity(intent);
        finish();

    }
    return super.onOptionsItemSelected(item);
}

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

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

发布评论

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

评论(1

对你而言 2024-12-13 19:42:41

尝试使用intent.addflags(flags)而不是使用intent.setflags(flags)...!!!!!

Try using intent.addflags(flags) not using intent.setflags(flags)...!!!!!

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