0

以下是android中手机状态的变化

  • CALL_STATE_OFFHOOK
  • CALL_STATE_IDLE
  • CALL_STATE_RINGING

    1. 当我拨出电话时,有人接到我的电话,过了一段时间我或他结束了通话。
    2. 当我有来电时,我接到了电话,过了一段时间我或他结束了通话。

我想在哪里使用广播接收器和侦听器以及为什么使用服务来执行此操作。

4

1 回答 1

2

出局或入局发生时android呼叫状态更改的顺序是什么?

来电:

nothing happened : CALL_STATE_IDLE
someone calls you: CALL_STATE_RINGING
call recieved:     CALL_STATE_OFFHOOK
call ended:        CALL_STATE_IDLE

拨出电话:

nothing happened :                        CALL_STATE_IDLE
start a call (pressing green button):     CALL_STATE_OFFHOOK
call ended:                               CALL_STATE_IDLE
于 2014-01-09T17:29:55.553 回答