open link in android studio

Solutions on MaxInterview for open link in android studio by the best coders in the world

showing results for - "open link in android studio"
Trevon
01 Jun 2016
1Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
2startActivity(browserIntent);