To open an URL in a browser from other android app is simple:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com"));
startActivity(intent);
In this way, however, the URL always opens in NORMAL TAB in android browser.
What can I do to open an URL in PRIVATE TAB or INCOGNITO MODE from other android app?