Skip to content Skip to sidebar Skip to footer

How To Auto Play First Video In Recyclerview In Exoplayer

I have a problem in my code. I want to autoplay first video from recyclerview in ExoPlayer, The player is working good on scroll but the first video does not play automatically pub

Solution 1:

Just add this line after setAdapter to the recycler view.

recyclerView.smoothScrollBy(0, -1); 

OR

recyclerView.smoothScrollBy(0, 1);

This will solve your problem.

Solution 2:

You only need to make the first video play using postDelayed().

I think the reason is that the views of the RecyclerView items are all drawn on the layout and the video play process are duplicated.

Post a Comment for "How To Auto Play First Video In Recyclerview In Exoplayer"