java.lang.Object | |
↳ | android.telecom.RemoteConnection.Callback |
Callback base class for RemoteConnection
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Indicates that the address (e.g., phone number) of this
RemoteConnection has
changed.
| |||||||||||
Indicates that the caller display name of this
RemoteConnection has changed.
| |||||||||||
Indicates that the
RemoteConference that this RemoteConnection is a part
of has changed.
| |||||||||||
Indicates that the
RemoteConnection s with which this RemoteConnection
may be asked to create a conference has changed.
| |||||||||||
Indicates that the call capabilities of this
RemoteConnection have changed.
| |||||||||||
Indicates that this
RemoteConnection has been destroyed.
| |||||||||||
Invoked when this
RemoteConnection is disconnected.
| |||||||||||
Handles changes to the
RemoteConnection extras.
| |||||||||||
Invoked when the post-dial sequence in the outgoing
Connection has processed
a character.
| |||||||||||
Invoked when the post-dial sequence in the outgoing
Connection has reached a
pause character.
| |||||||||||
Invoked when this
RemoteConnection is requesting ringback.
| |||||||||||
Invoked when the state of this
RemoteConnection has changed.
| |||||||||||
Indicates that the status hints of this
RemoteConnection have changed.
| |||||||||||
Indicates that the
VideoProvider associated with this RemoteConnection
has changed.
| |||||||||||
Indicates that the video state of this
RemoteConnection has changed.
| |||||||||||
Indicates that the VOIP audio status of this
RemoteConnection has changed.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Indicates that the address (e.g., phone number) of this RemoteConnection
has
changed. See getAddress()
and getAddressPresentation()
.
connection | The RemoteConnection invoking this method. |
---|---|
address | The new address of the RemoteConnection . |
presentation | The presentation requirements for the address.
See TelecomManager for valid values.
|
Indicates that the caller display name of this RemoteConnection
has changed.
See getCallerDisplayName()
and getCallerDisplayNamePresentation()
.
connection | The RemoteConnection invoking this method. |
---|---|
callerDisplayName | The new caller display name of the RemoteConnection . |
presentation | The presentation requirements for the handle.
See TelecomManager for valid values.
|
Indicates that the RemoteConference
that this RemoteConnection
is a part
of has changed.
connection | The RemoteConnection invoking this method. |
---|---|
conference | The RemoteConference of which this RemoteConnection is
a part, which may be null .
|
Indicates that the RemoteConnection
s with which this RemoteConnection
may be asked to create a conference has changed.
connection | The RemoteConnection invoking this method. |
---|---|
conferenceableConnections | The RemoteConnection s with which this
RemoteConnection may be asked to create a conference.
|
Indicates that the call capabilities of this RemoteConnection
have changed.
See getConnectionCapabilities()
.
connection | The RemoteConnection invoking this method. |
---|---|
connectionCapabilities | The new capabilities of the RemoteConnection .
|
Indicates that this RemoteConnection
has been destroyed. No further requests
should be made to the RemoteConnection
, and references to it should be cleared.
connection | The RemoteConnection invoking this method.
|
---|
Invoked when this RemoteConnection
is disconnected.
connection | The RemoteConnection invoking this method. |
---|---|
disconnectCause | The () associated with this failed connection. |
Handles changes to the RemoteConnection
extras.
connection | The RemoteConnection invoking this method. |
---|---|
extras | The extras containing other information associated with the connection. |
Invoked when the post-dial sequence in the outgoing Connection
has processed
a character.
connection | The RemoteConnection invoking this method. |
---|---|
nextChar | The character being processed. |
Invoked when the post-dial sequence in the outgoing Connection
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.
connection | The RemoteConnection invoking this method. |
---|---|
remainingPostDialSequence | The post-dial characters that remain to be sent. |
Invoked when this RemoteConnection
is requesting ringback. See
isRingbackRequested()
.
connection | The RemoteConnection invoking this method. |
---|---|
ringback | Whether the RemoteConnection is requesting ringback.
|
Invoked when the state of this RemoteConnection
has changed. See
getState()
.
connection | The RemoteConnection invoking this method. |
---|---|
state | The new state of the RemoteConnection .
|
Indicates that the status hints of this RemoteConnection
have changed. See
getStatusHints()
()}.
connection | The RemoteConnection invoking this method. |
---|---|
statusHints | The new status hints of the RemoteConnection .
|
Indicates that the VideoProvider
associated with this RemoteConnection
has changed.
connection | The RemoteConnection invoking this method. |
---|---|
videoProvider | The new VideoProvider associated with this
RemoteConnection .
|
Indicates that the video state of this RemoteConnection
has changed.
See getVideoState()
.
connection | The RemoteConnection invoking this method. |
---|---|
videoState | The new video state of the RemoteConnection .
|
Indicates that the VOIP audio status of this RemoteConnection
has changed.
See isVoipAudioMode()
.
connection | The RemoteConnection invoking this method. |
---|---|
isVoip | Whether the new audio state of the RemoteConnection is VOIP.
|