0

My recycle can be scrolled the NestedScrollView. However, it is not smooth as usual. Can anybody please help me to fix this.

Here is my code

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

    <android.support.v7.widget.RecyclerView
         android:id="@+id/fg_movie_list"
         android:layout_width="match_parent"
         android:layout_height="match_parent">

    </android.support.v7.widget.RecyclerView>

</android.support.v4.widget.NestedScrollView>
Alex Crowel
  • 97
  • 1
  • 10

1 Answers1

1

Use

mRecyclerView.setNestedScrollingEnabled(false);
mRecyclerView.setHasFixedSize(true);
KeLiuyue
  • 8,149
  • 4
  • 25
  • 42