I need directions on how to start the android browser through code . Thanks !
If you want a fully blown browser try with :
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://Yoururl.com")));
Have a look to ACTION_VIEW Intent.
If you want to simply display some HTML try using WebView:
WebView webview = new WebView(this);
setContentView(webview);
webview.loadUrl("http://yoururl.org/");
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