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
Simple, website view via intent,
Intent viewIntent = new Intent("android.intent.action.VIEW", Uri.parse("http://www.yoursite.in")); startActivity(viewIntent);
use this simple code toview your website in android app.
Add internet permission in manifest file,