We can make a call In Android.
We are able to make a phone call in android via intent. You need to write only three lines of code to make a phone call.
We are able to make a phone call in android via intent. You need to write only three lines of code to make a phone call.
- Intent callIntent = new Intent(Intent.ACTION_CALL);
- callIntent.setData(Uri.parse("tel:"+8802177690));//change the number
- startActivity(callIntent);
Write the permission code in Android-Manifest.xml file
You need to write CALL_PHONE permission as given below:
No comments:
Post a Comment