Possible Duplicate:
how to make phone call using intent in android?
Please give me code for calling the number through android Application.
Thanks a lot
Possible Duplicate:
how to make phone call using intent in android?
Please give me code for calling the number through android Application.
Thanks a lot
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
Edit: Must add <uses-permission android:name="android.permission.CALL_PHONE" />
in Manifest as well.
Try this,
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
And remember add this CALL_PHONE
permission to your manifest.xml
:
<uses-permission android:name="android.permission.CALL_PHONE" />
This may helps you.