public static final enum

VideoView.ScalingType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.glia.androidsdk.comms.VideoView.ScalingType

Class Overview

Contains types of video scaling that can be applied to VideoView

Summary

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

Enum Values

public static final VideoView.ScalingType ASPECT_FILL

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.

public static final VideoView.ScalingType ASPECT_FIT

Video frame is scaled to fit the size of the view by maintaining the aspect ratio.

public static final VideoView.ScalingType FILL

Video frame is scaled to fill the size of the view without maintaining the aspect ratio.

Public Methods

public static VideoView.ScalingType valueOf (String name)

public static final ScalingType[] values ()