Open TikTak123 opened 4 years ago
I was able to reproduce the error. Here is an example video where it is reproduced https://drive.google.com/file/d/1RK2yI_KOsl2Mdu3KpWu6vSKX417pNvov/view?usp=sharing I just added this peace of code to your sample project
viewPager.registerOnPageChangeCallback(object : ViewPager2.OnPageChangeCallback() {
override fun onPageSelected(position: Int) {
super.onPageSelected(position)
if (position > movies.size - 1)
throw IndexOutOfBoundsException()
}
})
The callback method onPageSelected receives a position greater than the list of elements.
CardSlider version: implementation 'com.github.IslamKhSh:CardSlider:1.0.1'
API level: Android 6, 9
Error log:
Sample code: