Load Webpage

From John Freier
Jump to: navigation, search

This will open a url in the browser.

String url = "url";   
Intent intent1 = new Intent(Intent.ACTION_VIEW);  
intent1.setData(Uri.parse(url));  
startActivity(intent1);