phone call using intent in Android

91

phone call using intent in Android -

String phone = "+34666777888";
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", phone, null));
startActivity(intent);

Comments

Submit
0 Comments