tuenti tigo recibo recibir puedo porque pero para llamar llamadas las hacer habilitar entrantes entran desvia claro celular java android actionscript-3 air

java - tigo - puedo hacer llamadas pero no recibo



¿Es posible recibir llamadas entrantes en el aire para Android? (1)

¿Alguien sabe acerca de obtener "evento de llamada entrante" en el aire para Android? ¿Hay algún recurso o debería hacerlo yo mismo usando TelephonyManager? desactivar evento no es adecuado para mí.


El teléfono en el dispositivo Android se encuentra en uno de los tres estados :

CALL_STATE_IDLE (when it is not engaged in any calls), CALL_STATE_RINGING (when there is an incoming call and device is ringing), CALL_STATE_OFFHOOK (when the user answers the call)

Incluso la acción EXTRA_STATE clave TelephonyManager # ACTION_PHONE_STATE_CHANGED acción utilizada con la transmisión ACTION_PHONE_STATE_CHANGED corresponde a estos estados de la siguiente manera:

EXTRA_STATE_IDLE (Value used with EXTRA_STATE corresponding to CALL_STATE_IDLE) EXTRA_STATE_OFFHOOK (Value used with EXTRA_STATE corresponding to CALL_STATE_OFFHOOK) EXTRA_STATE_RINGING (Value used with EXTRA_STATE corresponding to CALL_STATE_RINGING)

Entonces, para responder a su pregunta, actualmente no hay ningún evento para una "llamada entrante en el aire" en Android.