android – Intent.FLAG_ACTIVITY_CLEAR_TOP无效

前端之家收集整理的这篇文章主要介绍了android – Intent.FLAG_ACTIVITY_CLEAR_TOP无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的申请流程:

登录 – >简介 – > UpdateProfile-> ChangePass

我的所有活动都扩展了FragmentActivity

当我在ChangePass活动中按下按钮时,我调用代码

Intent intent=new Intent(getApplicationContext(),LoginActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);

所以它应该启动LoginActivity,当我从LoginActivity按回来然后应该关闭…但是当我按下Login Activity中的后退按钮时,流程是:

ChangePass-> UpdateProfile->简介 – >登录

为什么我的后台堆栈没有清除?

注意:

我已经应用了所有这些解决方案但没有工作:
1.link
2.link

最佳答案
尝试以下方式 –

 Intent intent = new Intent(getActivity(),LoginActivity.class);
 intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
 intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
 startActivity(intent);
 finish();

有关更多替代方案和详细信息,请查看intent-flag-activity-clear-top-doesn’t-deletes-the-activity-stack.该帖子完美地解释了结果代码并使用上述解决方案.

原文链接:https://www.f2er.com/android/431067.html

猜你在找的Android相关文章