How to open an URL from code in the built-in web browser rather than within my application?
I tried this:
try { Intent myIntent = new Intent(Int
Simply go with short one to open your Url in Browser:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("YourUrlHere")); startActivity(browserIntent);