Language

VideoProfileState Enum

Definition

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum VideoProfileState
[<System.Flags>]
type VideoProfileState = 
Inheritance
VideoProfileState
Attributes

Fields

Name Value Description
AudioOnly 0

Used when answering or dialing a call to indicate that the call does not have a video component.

Should not be used in comparison checks to determine if a video state represents an audio-only call.

// This is the incorrect way to check for an audio-only call.
if (videoState == VideoProfile.STATE_AUDIO_ONLY) {
     // Handle audio-only call.
}
// This is the correct way to check for an audio-only call.
if (VideoProfile.isAudioOnly(videoState)) {
     // Handle audio-only call.
}

Android reference for android.telecom.VideoProfile.STATE_AUDIO_ONLY.

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.

TxEnabled 1

Video transmission is enabled.

Android reference for android.telecom.VideoProfile.STATE_TX_ENABLED.

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.

RxEnabled 2

Video reception is enabled.

Android reference for android.telecom.VideoProfile.STATE_RX_ENABLED.

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.

Bidirectional 3

Video signal is bi-directional.

Android reference for android.telecom.VideoProfile.STATE_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.

Paused 4

Video is paused.

Android reference for android.telecom.VideoProfile.STATE_PAUSED.

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