I am working on ExoPlayer, I want to customize the ExoPlayer and listen for the Event next, previous, rewind, forward so that when the user clicks the next button next video
if you have not customized exoplayer
if (currentPlayingVodPosition-1 == player.currentWindowIndex){
Toast.makeText(this,"prev clicked",Toast.LENGTH_SHORT).show()
}
if (currentPlayingVodPosition+1 == player.currentWindowIndex){
Toast.makeText(this,"next clicked",Toast.LENGTH_SHORT).show()
}