Methods Summary |
---|
public int | describeContents()Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
return 0;
|
public int | getHeight()The height of the camera video in pixels.
return mHeight;
|
public float | getMaxZoom()The maximum zoom supported by the camera.
return mMaxZoom;
|
public int | getWidth()The width of the camera video in pixels.
return mWidth;
|
public boolean | isZoomSupported()Whether the camera supports zoom.
return mZoomSupported;
|
public void | writeToParcel(android.os.Parcel dest, int flags)Flatten this object in to a Parcel.
dest.writeByte((byte) (isZoomSupported() ? 1 : 0));
dest.writeFloat(getMaxZoom());
dest.writeInt(getWidth());
dest.writeInt(getHeight());
|