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.
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
|
Creator<VideoProfile.CameraCapabilities> CREATOR
Responsible for creating CallCameraCapabilities objects from deserialized Parcels.
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).
|
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. |
int getHeight ()
The height of the camera video in pixels.
Returns | |
---|---|
int |
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 .
|