Created
September 9, 2011 08:28
-
-
Save rsaunders100/1205761 to your computer and use it in GitHub Desktop.
(Android) Makes a call using the dialier on Android.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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