Recyclerview jerking when scrolling

889 Views Asked by At

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.

1

There are 1 best solutions below

1
On BEST ANSWER

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.