Skip to content

Instantly share code, notes, and snippets.

@codesburner
Forked from mstefanko/gist:890441
Created April 5, 2011 08:21
Show Gist options
  • Select an option

  • Save codesburner/903234 to your computer and use it in GitHub Desktop.

Select an option

Save codesburner/903234 to your computer and use it in GitHub Desktop.
//Present you with the dialler
Code: Select all
Uri telUri = Uri.parse("tel:100861");
returnIt = new Intent(Intent.ACTION_DIAL, telUri);
// Start the call
Code: Select all
Uri callUri = Uri.parse("tel:100861");
returnIt = new Intent(Intent.ACTION_CALL, callUri);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment