gpt4 book ai didi

android - 如何返回关闭 Activity 之间的 Activity ?

转载 作者:行者123 更新时间:2023-12-04 11:01:56 25 4
gpt4 key购买 nike

我需要回到我的应用程序的主要 Activity ,但为此,我需要关闭当前 Activity 和主要 Activity 之间的所有 Activity 。

我试过这个:

Intent intent = new Intent(getActivity(), MainMenuActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity( intent );

问题是这样做,主要 Activity 也被关闭并重新打开,在主要命运 Activity 中调用 onDestroy() 。我需要回到它而不关闭和重新打开它。如何实现?

最佳答案

documentationFLAG_ACTIVITY_CLEAR_TOP

The currently running instance [...] will either receive the new intent you are starting here in its onNewIntent() method, or be itself finished and restarted with the new intent. If it has declared its launch mode to be "multiple" (the default) and you have not set FLAG_ACTIVITY_SINGLE_TOP in the same intent, then it will be finished and re-created; for all other launch modes or if FLAG_ACTIVITY_SINGLE_TOP is set then this Intent will be delivered to the current instance's onNewIntent().



在你的情况下,我假设你的 MainMenuActivity具有“多重”启动模式。由于您没有设置 FLAG_ACTIVITY_SINGLE_TOP ,它完成并重新启动。

所以如果你使用
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|FLAG_ACTIVITY_SINGLE_TOP);

然后根据文档 MainMenuActivity实例将保持其状态和 onNewIntent()将被调用。

注意:您可以使用 setIntent() 制作 Intent传递给 onNewIntent() “该” IntentActivity

关于android - 如何返回关闭 Activity 之间的 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58755319/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com