Created
October 2, 2012 00:20
-
-
Save phatduckk/3815407 to your computer and use it in GitHub Desktop.
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
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