如何在概述中设置“粘在一起”的documentLaunchMode(就像Chrome一样)?

时间:2015-08-04 06:06:47

标签: android google-chrome android-5.0-lollipop

我注意到当我从Chrome打开一个新标签页(启用了“合并标签和应用”)时,同一个域中的新标签会在概述中粘在一起。

像这样的代码

Intent i = new Intent(this, SomeActivity.class)
            .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);

或在android:documentLaunchMode="always"中设置AndroidManifest.xml可以打开多张卡片但不会“粘在一起”(就像Chrome所做的那样)。

1 个答案:

答案 0 :(得分:1)

7个月后,我的朋友@mthli终于找到了解决方案:

ReadFile

screenshot

原始链接(中文):https://www.zhihu.com/question/34100283/answer/85058405