Skip to content

Instantly share code, notes, and snippets.

@rsaunders100
Created September 9, 2011 08:28
Show Gist options
  • Save rsaunders100/1205761 to your computer and use it in GitHub Desktop.
Save rsaunders100/1205761 to your computer and use it in GitHub Desktop.
(Android) Makes a call using the dialier on Android.
Uri uri = Uri.parse("tel:4444");
Intent callIntent = new Intent(Intent.ACTION_DIAL, uri);
startActivity(callIntent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment