How to call a number from our application?
1943
15-Nov-2014
call a number from our application
Updated on 15-Nov-2014
David Miller
15-Nov-2014Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
And remember add this CALL_PHONE permission to your Manifest:
<uses-permission android:name="android.permission.CALL_PHONE" />