gpt4 book ai didi

android-intent - 如何从其他 Android 应用程序在 PRIVATE TAB(隐身浏览)中打开 URL

转载 作者:行者123 更新时间:2023-12-04 04:42:49 26 4
gpt4 key购买 nike

从其他 Android 应用程序在浏览器中打开 URL 很简单:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com"));
startActivity(intent);

但是,通过这种方式,URL 总是在 android 浏览器的 NORMAL TAB 中打开。

如何从其他 Android 应用程序以 PRIVATE TAB 或 INCOGNITO 模式打开 URL?

最佳答案

添加标志= FLAG_ACTIVITY_NO_HISTORY

Intent yourIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(yourUrl));
yourIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
context.startActivity(yourIntent);

关于android-intent - 如何从其他 Android 应用程序在 PRIVATE TAB(隐身浏览)中打开 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17385669/

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