I am making an android application, in which I want to open the browser via an intent for a specific URL on button click; I am using following code for this:
String url = finalUrl2;
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
This is opening the browser with its address bar, but I want that the browser opens without its address bar.
I don't want to use a web view in this case, because of some reasons; I want to open the Browser without its address bar.
Please tell me the way of doing this. If this is possible only in rooted mobiles, then please tell me the way of doing this in rooted mobiles.
Thanks.