我的 Android 应用程序可以在隐身选项卡中打开 URL 吗?

发布于 2024-12-16 11:06:07 字数 255 浏览 0 评论 0原文

我们都知道如何在Andriod中的浏览器中打开一个URL。执行以下操作:

Intent browserIntent = new Intent("android.intent.action.VIEW", Uri.parse(url));
context.startActivity(browserIntent);

Honeycomb 的原生浏览器包含对隐身模式的支持。有没有办法让目标 URL 在隐身选项卡中打开?我好像找不到啊

We all know how to open a URL in the browser in Andriod. Do something like this:

Intent browserIntent = new Intent("android.intent.action.VIEW", Uri.parse(url));
context.startActivity(browserIntent);

Honeycomb's stock browser includes support for incognito mode. Is there a way to make the target URL open in an incognito tab? I can't seem to find it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

后eg是否自 2024-12-23 11:06:07

目前,原生 Android 浏览器没有隐身模式,因此您可能无法做到这一点。只有 Honeycomb 及以上版本的浏览器具有该功能。

Currently there's no incognito mode for stock Android Browser so probably you cant do that.Just Honeycomb and above version browsers have that feature.

习惯成性 2024-12-23 11:06:07

据我所知,原生 Android 浏览器中没有隐身模式。

有几个应用程序提供此功能 - 当您触发代码中给出的 Intent 时,它们应该自行提供。

As far as I know there is no incognito mode in the stock Android browser.

There are several apps supplying this feature - they should offer themselves when you fire the Intent you gave in the code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文