Skip to content

Instantly share code, notes, and snippets.

@phatduckk
Created October 2, 2012 00:20
Show Gist options
  • Save phatduckk/3815407 to your computer and use it in GitHub Desktop.
Save phatduckk/3815407 to your computer and use it in GitHub Desktop.
String uri = "tel:911";
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse(uri));
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment