Enum AspectRatio
-
- All Implemented Interfaces:
public enum AspectRatio
Specifies an aspect ratio for the player when in fullscreen mode.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIT
Scales the THEOplayer so that all content fits inside its bounding box, keeping the original aspect ratio of the content.
- This might result in black bars on the side if aspect ratio of the content does not match the screen. The content will never be cropped.
FILL
Scales the THEOplayer so that all content fits inside the bounding box, which will be stretched to fill it entirely.
- This does not keep the original aspect ratio, content may look stretched out. It will not show black bars.
ASPECT_FILL
Scales the THEOplayer so that the content fills up the entire bounding box, keeping the original aspect ratio of the content.
- This will not show black bars. The content might be cropped.
-
Method Summary
Modifier and Type Method Description static Array<AspectRatio>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static AspectRatio
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<AspectRatio> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static AspectRatio valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-