Most visited

Recently visited

Added in API level 23

VideoProfile.CameraCapabilities

public static final class VideoProfile.CameraCapabilities
extends Object implements Parcelable

java.lang.Object
   ↳ android.telecom.VideoProfile.CameraCapabilities


Represents the camera capabilities important to a Video Telephony provider.

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<VideoProfile.CameraCapabilities> CREATOR

Responsible for creating CallCameraCapabilities objects from deserialized Parcels.

Public constructors

VideoProfile.CameraCapabilities(int width, int height)

Create a call camera capabilities instance.

Public methods

int describeContents()

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

int getHeight()

The height of the camera video in pixels.

int getWidth()

The width of the camera video in pixels.

void writeToParcel(Parcel dest, int flags)

Flatten this object in to a Parcel.

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Added in API level 23
Creator<VideoProfile.CameraCapabilities> CREATOR

Responsible for creating CallCameraCapabilities objects from deserialized Parcels.

Public constructors

VideoProfile.CameraCapabilities

Added in API level 23
VideoProfile.CameraCapabilities (int width, 
                int height)

Create a call camera capabilities instance.

Parameters
width int: The width of the camera video (in pixels).
height int: The height of the camera video (in pixels).

Public methods

describeContents

Added in API level 23
int describeContents ()

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

Returns
int a bitmask indicating the set of special object types marshalled by the Parcelable.

getHeight

Added in API level 23
int getHeight ()

The height of the camera video in pixels.

Returns
int

getWidth

Added in API level 23
int getWidth ()

The width of the camera video in pixels.

Returns
int

writeToParcel

Added in API level 23
void writeToParcel (Parcel dest, 
                int flags)

Flatten this object in to a Parcel.

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!