open website from android activity

128

open website from android activity -

Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse("http://www.stackoverflow.com"));      
startActivity(intent); 

Comments

Submit
0 Comments