小编nam*_*nam的帖子

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

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

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com"));
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

但是,这样,URL始终在Android浏览器的NORMAL TAB中打开.


如何从其他Android应用程序在PRIVATE TAB或INCOGNITO MODE中打开URL?

android-intent incognito-mode

9
推荐指数
1
解决办法
1867
查看次数

标签 统计

android-intent ×1

incognito-mode ×1