Język

CallCapability Enum

Definition

public enum CallCapability
type CallCapability = 
Inheritance
CallCapability

Fields

Name Value Description
Hold 1

Call can currently be put on hold or unheld.

Android reference for android.telecom.Call.Details.CAPABILITY_HOLD.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportHold 2

Call supports the hold feature.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORT_HOLD.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

MergeConference 4

Calls within a conference can be merged. A ConnectionService has the option to add a Conference call before the child Connections are merged. This is how CDMA-based Connections are implemented. For these unmerged Conferences, this capability allows a merge button to be shown while the conference call is in the foreground of the in-call UI.

This is only intended for use by a Conference.

Android reference for android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SwapConference 8

Calls within a conference can be swapped between foreground and background. See CAPABILITY_MERGE_CONFERENCE for additional information.

This is only intended for use by a Conference.

Android reference for android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

RespondViaText 32

Call supports responding via text option.

Android reference for android.telecom.Call.Details.CAPABILITY_RESPOND_VIA_TEXT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Mute 64

Call can be muted.

Android reference for android.telecom.Call.Details.CAPABILITY_MUTE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

ManageConference 128

Call supports conference call management. This capability only applies to Conference calls which can have Connections as children.

Android reference for android.telecom.Call.Details.CAPABILITY_MANAGE_CONFERENCE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportsVtLocalRx 256

Local device supports receiving video.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_RX.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportsVtLocalTx 512

Local device supports transmitting video.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_TX.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportsVtLocalBidirectional 768

Local device supports bidirectional video calling.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportsVtRemoteRx 1024

Remote device supports receiving video.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_RX.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportsVtRemoteTx 2048

Remote device supports transmitting video.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_TX.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportsVtRemoteBidirectional 3072

Remote device supports bidirectional video calling.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SeparateFromConference 4096

Call is able to be separated from its parent Conference, if any.

Android reference for android.telecom.Call.Details.CAPABILITY_SEPARATE_FROM_CONFERENCE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

DisconnectFromConference 8192

Call is able to be individually disconnected when in a Conference.

Android reference for android.telecom.Call.Details.CAPABILITY_DISCONNECT_FROM_CONFERENCE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

CanPauseVideo 1048576

For video calls, indicates whether the outgoing video for the call can be paused using the VideoProfile.STATE_PAUSED VideoState.

Android reference for android.telecom.Call.Details.CAPABILITY_CAN_PAUSE_VIDEO.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

CannotDowngradeVideoToAudio 4194304

When set, prevents a video Call from being downgraded to an audio-only call.

Should be set when the VideoState has the VideoProfile.STATE_TX_ENABLED or VideoProfile.STATE_RX_ENABLED bits set to indicate that the connection cannot be downgraded from a video call back to a VideoState of VideoProfile.STATE_AUDIO_ONLY.

Intuitively, a call which can be downgraded to audio should also have local and remote video capabilities (see CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL and CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL).

Android reference for android.telecom.Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

CanPullCall 8388608

When set for an external call, indicates that this Call can be pulled from a remote device to the current device.

Should only be set on a Call where PROPERTY_IS_EXTERNAL_CALL is set.

An InCallService will only see calls with this capability if it has the TelecomManager.METADATA_INCLUDE_EXTERNAL_CALLS metadata set to true in its manifest.

See Connection.CAPABILITY_CAN_PULL_CALL and Connection.PROPERTY_IS_EXTERNAL_CALL.

Android reference for android.telecom.Call.Details.CAPABILITY_CAN_PULL_CALL.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SupportDeflect 16777216

Call supports the deflect feature.

Android reference for android.telecom.Call.Details.CAPABILITY_SUPPORT_DEFLECT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

AddParticipant 33554432

Call supports adding participants to the call via addConferenceParticipants(List). Once participants are added, the call becomes an adhoc conference call (PROPERTY_IS_ADHOC_CONFERENCE).

Android reference for android.telecom.Call.Details.CAPABILITY_ADD_PARTICIPANT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

RemotePartySupportsRtt 268435456

Indicates whether the remote party supports RTT or not to the UI.

Android reference for android.telecom.Call.Details.CAPABILITY_REMOTE_PARTY_SUPPORTS_RTT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to