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.