NestedScrollView 中的 Recyclerview

Recycle View in NestedScrollView

我的回收站可以滚动NestedScrollView。然而,它并不像往常一样顺利。谁能帮我解决这个问题。

这是我的代码

<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>

使用

mRecyclerView.setNestedScrollingEnabled(false);
mRecyclerView.setHasFixedSize(true);