smooth scrolling for recyclerview

梦想的初衷 提交于 2019-12-06 14:39:59

Its because your recycler view is inside a nested Scroll view.

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycle2"
    android:nestedScrollingEnabled="false"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

also in your code do this to support older devices :

 recyclerView.setNestedScrollingEnabled(false);

Add this line recyclerView.invalidate(); after recyclerView.setAdapter(adapterSTList);

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!