我的 Android 应用程序可以在隐身选项卡中打开 URL 吗?
我们都知道如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前,原生 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.
据我所知,原生 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.