在应用程序中返回按钮

发布于 2025-01-03 16:04:06 字数 296 浏览 1 评论 0原文

我需要编写一个按钮以返回主应用程序活动。

public void onGotoMainActivity(View View)
    {
         Intent intent = new Intent(View.getContext(), MainActivity.class);
         this.startActivity(intent);
    }

Main 活动已经开始并且尚未被销毁。所以我不认为这将是一个“新”意图,也不应该“开始活动”?难道它不应该只是让主要活动重新聚焦吗?

I need to code a button to go BACK to the main application activity.

public void onGotoMainActivity(View View)
    {
         Intent intent = new Intent(View.getContext(), MainActivity.class);
         this.startActivity(intent);
    }

The Main activity is already started and has not been destroyed. So I don't think this would be a "new" intent nor should it "start activity"? Shouldn't it merely call the main activity back to focus?

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

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

发布评论

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

评论(5

葬﹪忆之殇 2025-01-10 16:04:06

您应该设置FLAG_ACTIVITY_CLEAR_TOP,这样它就不会启动Activity的新实例,而是清除堆栈顶部的所有Activities并传递意图到(现在在顶部)带有新IntentActivity

public void onGotoMainActivity(View View)
    {
         Intent intent = new Intent(View.getContext(), MainActivity.class);
         intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
         this.startActivity(intent);
    }

you should set FLAG_ACTIVITY_CLEAR_TOP so instead of launching a new instance of the Activity it will clear all Activities on the top of the stack and deliver the intent to (on top now) Activity with a new Intent

public void onGotoMainActivity(View View)
    {
         Intent intent = new Intent(View.getContext(), MainActivity.class);
         intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
         this.startActivity(intent);
    }
红尘作伴 2025-01-10 16:04:06

您也可以使用这个。

Intent intent = new Intent();
setResult(RESULT_OK, intent);
finish();

You can use this also.

Intent intent = new Intent();
setResult(RESULT_OK, intent);
finish();
堇年纸鸢 2025-01-10 16:04:06

只需在 onClick() 中使用 finish() 即可

,或者如果您有超过 1 个活动,则添加此

        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

just use finish() in the onClick()

or add this if you're more than 1 activity in

        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
無心 2025-01-10 16:04:06

你的意思是模拟后退按钮吗?

dispatchKeyevent(Keyevent.ACTION_DOWN, Keyevent.BUTTON_BACK);
dispatchKeyevent(Keyevent.ACTION_UP, Keyevent.BUTTON_BACK);

Do you mean to simulate a back button?

dispatchKeyevent(Keyevent.ACTION_DOWN, Keyevent.BUTTON_BACK);
dispatchKeyevent(Keyevent.ACTION_UP, Keyevent.BUTTON_BACK);
还在原地等你 2025-01-10 16:04:06

这对我来说一切都清楚了。

public void onGotoMainActiviy(View View)
{
    Intent intent = new Intent(View.getContext(), MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    CurrentActivity.this.finish();
}

谢谢大家让我走上正轨。活动的生命周期无疑是有价值的信息。

This cleared it all up for me.

public void onGotoMainActiviy(View View)
{
    Intent intent = new Intent(View.getContext(), MainActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    CurrentActivity.this.finish();
}

Thank you everyone for getting me on the right track. The activities' life cycle was defiantly valuable information.

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