RecyclerView decorator adding extra padding on refresh

后端 未结 8 2064
轻奢々
轻奢々 2021-02-01 17:42

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

8条回答
  •  迷失自我
    2021-02-01 17:48

    You have to remove the item decoration before reseting new data.

    rv.removeItemDecoration(yourDecorator)

    Let me know if it works!

提交回复
热议问题