在NestedScrollView中回收视图

时间:2017-10-18 07:58:19

标签: android android-recyclerview scrollview

我的回收可以滚动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>

1 个答案:

答案 0 :(得分:1)

使用

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