Duplicar posible:
how to make phone call using intent in android?androide: Cómo llamar al número de aplicaciones para Android
Por favor, dame código para llamar al número de aplicaciones a través de Android.
Muchas gracias
Duplicar posible:
how to make phone call using intent in android?androide: Cómo llamar al número de aplicaciones para Android
Por favor, dame código para llamar al número de aplicaciones a través de Android.
Muchas gracias
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
Editar: Debe añadir <uses-permission android:name="android.permission.CALL_PHONE" />
de manifiesto también.
Prueba de esto,
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
Y recuerde agregar este CALL_PHONE
permiso para su manifest.xml
:
<uses-permission android:name="android.permission.CALL_PHONE" />
Esto puede le ayuda.
Debe agregar ' ' en Manifest también. –
Mika