Search code examples
mvvmdata-bindingscrollandroid-recyclerviewcardview

Recyclerview jerking when scrolling


I have a recyclerview. Each item is a cardview with an imageview and textviews. On scrolling, at the beginning of each item recyclerview jerks/jumps and then proceeds with smooth scroll. I researched alot and found no solution. Someone please help. I am using data binding with MVVM architecture.


Solution

  • I found the solution. I added the code holder.setIsRecyclable(false); which was the reaso for the jerking. Removing this line made recyclerview scrolling perfect.