So, I\'m facing a weird problem while implementing RecyclerView in my project. I have a custom decorator to implement a consistent top and bottom padding and a rather different
You have to remove the item decoration before reseting new data.
rv.removeItemDecoration(yourDecorator)
Let me know if it works!