Interface TextOutput
-
@Deprecated public interface TextOutput
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.Receives text output.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
onCues(CueGroup cueGroup)
Deprecated.Called when there is a change in theCueGroup
.default void
onCues(List<Cue> cues)
Deprecated.UseonCues(CueGroup)
instead.
-
-
-
Method Detail
-
onCues
@Deprecated default void onCues(List<Cue> cues)
Deprecated.UseonCues(CueGroup)
instead.Called when there is a change in theCues
.Both
onCues(List)
andonCues(CueGroup)
are called when there is a change in the cues. You should only implement one or the other.
-
onCues
void onCues(CueGroup cueGroup)
Deprecated.Called when there is a change in theCueGroup
.Both
onCues(List)
andonCues(CueGroup)
are called when there is a change in the cues. You should only implement one or the other.
-
-