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.