从其他 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?
从其他 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?