Skip to content

Instantly share code, notes, and snippets.

@hkurosawa
Created November 3, 2011 05:28
Show Gist options
  • Save hkurosawa/1335837 to your computer and use it in GitHub Desktop.
Save hkurosawa/1335837 to your computer and use it in GitHub Desktop.
how to launch external browser on Android http://blog.imho.jp/2011/08/android.html
String uri_str;
Uri uri = Uri.parse(uri_str);
Intent i = new Intent(Intent.ACTION_VIEW, uri);
startActivity(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment