I am working on Viewpager2 to add two videos to Viewpager2 at the previous and next positions.
When a video is added to the previous position, its listing is getting disturbed
I am using the following code to add videos to the Viewpager2:
Add to the previous position(as current is at 0th position)
videos.add(0, video);
notifyItemInserted(0);
Add at the next position
videos.add(video);
notifyItemInserted(videos.size());
Any help is appreciated
Thanks in advance