Back to Exoplayer

TextAnnotation (ExoPlayer library)

docs/doc/reference/com/google/android/exoplayer2/text/span/TextAnnotation.html

latest3.1 KB
Original Source

Package com.google.android.exoplayer2.text.span

Class TextAnnotation


[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classTextAnnotationextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")

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. |

Method Summary

- 

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

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