i am working on a project where i should play .srt files along with video in android. I was working through the samples of Exoplayer but cant able to play .srt files with vi
SubtitleView subtitleView=(SubtitleView)findViewById(com.google.android.exoplayer2.R.id.exo_subtitles);
player.setTextOutput(new ComponentListener());
public class ComponentListener implements TextRenderer.Output{
@Override
public void onCues(List cues) {
if (subtitleView != null) {
subtitleView.onCues(cues);
}
}
}
To show/hide the subtitleView:
subtitleView.setVisiblity(Visible/Gone);