Class TextAnnotation
- java.lang.Object
-
- com.google.android.exoplayer2.text.span.TextAnnotation
-
@Deprecated public final class TextAnnotation extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Properties of a text annotation (i.e. ruby, text emphasis marks).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
TextAnnotation.Position
Deprecated.The possible positions of the annotation text relative to the base text.
-
Field Summary
Fields Modifier and Type Field Description static int
POSITION_AFTER
Deprecated.For horizontal text, the text annotation should be positioned below the base text.static int
POSITION_BEFORE
Deprecated.For horizontal text, the text annotation should be positioned above the base text.static int
POSITION_UNKNOWN
Deprecated.The text annotation position is unknown.
-
-
-
Field Detail
-
POSITION_UNKNOWN
public static final int POSITION_UNKNOWN
Deprecated.The text annotation position is unknown.- See Also:
- Constant Field Values
-
POSITION_BEFORE
public static final int POSITION_BEFORE
Deprecated.For horizontal text, the text annotation should be positioned above the base text.For vertical text it should be positioned to the right, same as CSS's ruby-position.
- See Also:
- Constant Field Values
-
POSITION_AFTER
public static final int POSITION_AFTER
Deprecated.For horizontal text, the text annotation should be positioned below the base text.For vertical text it should be positioned to the left, same as CSS's ruby-position.
- See Also:
- Constant Field Values
-
-