| java.lang.Object | ||
| ↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
| ↳ | com.glia.androidsdk.comms.VideoView.ScalingType | |
Contains types of video scaling that can be applied to VideoView
| Enum Values | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| VideoView.ScalingType | ASPECT_FILL | Video frame is scaled to fill the size of the view by maintaining the aspect ratio. | |||||||||
| VideoView.ScalingType | ASPECT_FIT | Video frame is scaled to fit the size of the view by maintaining the aspect ratio. | |||||||||
| VideoView.ScalingType | FILL | Video frame is scaled to fill the size of the view without maintaining the aspect ratio. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| static VideoView.ScalingType | valueOf(String name) | ||||||||||
| final static ScalingType[] | values() | ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
| |||||||||||
From interface
java.lang.constant.Constable
| |||||||||||
Video frame is scaled to fill the size of the view by maintaining the aspect ratio. Some portion of the video frame may be clipped.
Video frame is scaled to fit the size of the view by maintaining the aspect ratio.
Video frame is scaled to fill the size of the view without maintaining the aspect ratio.