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.
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.