Can we make use of default browser instead of the WebView browser Is there ny API for the default browser.....
or we have to compulsory create our own browser through WebView
You have to import intent.
String url = "http://www.google.com";
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(browserIntent);
You can use an Intent with ACTION_VIEW
to open the browser with your URL. Would be something like that :
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.example.com"));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With