以编程方式关闭 noHistory="true"

问题描述 投票:0回答:1

我有一个启动活动,在 Manifest.xml 中设置了

noHistory="true"
。 在活动中,我显示了一个信息文本,用户可以在其中单击启动 CustomTabIntent 的链接。 当我回到这里时,应用程序关闭(我认为是因为
noHistory="true"
)。 如何在代码中将
noHistory
设置为
false
,以便在这种情况下返回到启动活动?

android android-activity nohistory
1个回答
0
投票

您可以在 clearFlags

 中使用 
Activity

window.clearFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
© www.soinside.com 2019 - 2024. All rights reserved.