How to make RecyclerView scroll smoothly?

前端 未结 9 1449
-上瘾入骨i
-上瘾入骨i 2020-12-30 21:16

This is more like a generic question, but after lot of search and try I am not able to understand why this is so difficult to achieve. This is the closest answer I can find

9条回答
  •  轮回少年
    2020-12-30 21:57

    I just faced this problem, and disabling nested scroll fixed it. Do it like this:

    yourRecyclerview.setNestedScrollingEnabled(false);
    

    Or you can change the value in xml file where you defined RecyclerView:

    
    

提交回复
热议问题