How to make RecyclerView scroll smoothly?

前端 未结 9 1399
-上瘾入骨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 22:01

    I just faced this problem, and i got I put the RecyclerView in ScrollView So please never put the RecyclerView inside the ScrollView that may also cause.

    mLayoutManager.findFirstVisibleItemPosition()
    

    That always return a fixed value. And also check

    recyclerview.setNestedScrollingEnabled(false);
    

提交回复
热议问题