How to make RecyclerView scroll smoothly?

前端 未结 9 1448
-上瘾入骨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:50

    Add this wherever you have declared RecyclerView in your Activity or Fragment

    RecyclerView mRecyclerview = (RecyclerView) findViewById(...);
    mRecyclerview.setNestedScrollingEnabled(false);
    

    setNestedScrollview(false) does the work for you.

提交回复
热议问题