I am implementing the ExoPlayer in a RecyclerView. But while scrolling the Video stops, but not the audio.
How can I release the ExoPlayer in the RecyclerView? Or how c
holder.yourplayername.addOnAttachStateChangeListener(new View.OnAttachStateChangeListener() {
@Override
public void onViewAttachedToWindow(View v) {
}
@Override
public void onViewDetachedFromWindow(View v) {
holder.yourplayername.getPlayer().stop();
}
});
hi.i hope this code helpful for you becuse work for me.