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


表示对视频电话提供商很重要的相机功能。

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<VideoProfile.CameraCapabilities> CREATOR

负责从反序列化Parcels创建CallCameraCapabilities对象。

Public constructors

VideoProfile.CameraCapabilities(int width, int height)

创建一个呼叫摄像头功能实例。

Public methods

int describeContents()

描述此Parcelable的编组表示中包含的特殊对象的种类。

int getHeight()

摄像机视频的高度(以像素为单位)。

int getWidth()

摄像机视频的宽度(以像素为单位)。

void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

Inherited methods

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

Fields

CREATOR

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

负责从反序列化Parcels创建CallCameraCapabilities对象。

Public constructors

VideoProfile.CameraCapabilities

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

创建一个呼叫摄像头功能实例。

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 ()

描述此Parcelable的编组表示中包含的特殊对象的种类。

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

getHeight

Added in API level 23
int getHeight ()

摄像机视频的高度(以像素为单位)。

Returns
int

getWidth

Added in API level 23
int getWidth ()

摄像机视频的宽度(以像素为单位)。

Returns
int

writeToParcel

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

将此对象平铺到一个包裹中。

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!