Last active
June 30, 2020 17:15
-
-
Save dkowsikpai/3c7cfc5b552f3f592ab711e4ac650691 to your computer and use it in GitHub Desktop.
Android - Call Intent
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
| Intent callIntent = new Intent(Intent.ACTION_DIAL); | |
| callIntent .setData(Uri.parse("tel:" + "0123456789")); | |
| startActivity(callIntent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment