Skip to content

Instantly share code, notes, and snippets.

@ursimon
Created January 17, 2014 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ursimon/8474334 to your computer and use it in GitHub Desktop.
Save ursimon/8474334 to your computer and use it in GitHub Desktop.
Open Web Url Intent
String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment