java.lang.Object | |
↳ | android.telecom.Call.Callback |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Invoked when the
Call is destroyed.
| |||||||||||
Invoked when the text messages that can be used as responses to the incoming
Call are loaded from the relevant database.
| |||||||||||
Invoked when the children of this
Call have changed.
| |||||||||||
Invoked upon changes to the set of
Call s with which this Call can be
conferenced.
| |||||||||||
Invoked when the details of this
Call have changed.
| |||||||||||
Invoked when the parent of this
Call has changed.
| |||||||||||
Invoked when the post-dial sequence in the outgoing
Call has reached a pause
character.
| |||||||||||
Invoked when the state of this
Call has changed.
| |||||||||||
Invoked when the
Call.VideoCall of the Call has changed.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Invoked when the Call
is destroyed. Clients should refrain from cleaning
up their UI for the Call
in response to state transitions. Specifically,
clients should not assume that a onStateChanged(Call, int)
with a state of
STATE_DISCONNECTED
is the final notification the Call
will send. Rather,
clients should wait for this method to be invoked.
call | The Call being destroyed.
|
---|
Invoked when the text messages that can be used as responses to the incoming
Call
are loaded from the relevant database.
See getCannedTextResponses()
.
call | The Call invoking this method. |
---|---|
cannedTextResponses | The text messages useable as responses. |
Invoked when the children of this Call
have changed. See getChildren()
.
call | The Call invoking this method. |
---|---|
children | The new children of the Call .
|
Invoked upon changes to the set of Call
s with which this Call
can be
conferenced.
call | The Call being updated. |
---|---|
conferenceableCalls | The Call s with which this Call can be
conferenced.
|
Invoked when the details of this Call
have changed. See getDetails()
.
call | The Call invoking this method. |
---|---|
details | A Details object describing the Call .
|
Invoked when the parent of this Call
has changed. See getParent()
.
call | The Call invoking this method. |
---|---|
parent | The new parent of the Call .
|
Invoked when the post-dial sequence in the outgoing Call
has reached a pause
character. This causes the post-dial signals to stop pending user confirmation. An
implementation should present this choice to the user and invoke
postDialContinue(boolean)
when the user makes the choice.
call | The Call invoking this method. |
---|---|
remainingPostDialSequence | The post-dial characters that remain to be sent. |
Invoked when the state of this Call
has changed. See getState()
.
call | The Call invoking this method. |
---|---|
state | The new state of the Call .
|
Invoked when the Call.VideoCall
of the Call
has changed.
call | The Call invoking this method. |
---|---|
videoCall | The Call.VideoCall associated with the Call .
|