RecyclerView会回收NestedScrollView中的项目吗?

时间:2017-08-13 05:28:31

标签: android performance android-layout android-recyclerview

我在RecyclerView内使用了两个NestedScrollView。设置工作得很好,但我担心它可能产生的内存影响。我不确定RecylerView是否会像它一样回收组件。这还有其他缺点吗?

以下是一些代码:

<android.support.v4.widget.NestedScrollView
    android:id="@+id/nested_coordinator_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="54dp"
    android:background="@color/white"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <RelativeLayout
        android:id="@+id/toplayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white">

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

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

        </RelativeLayout>
</android.support.v4.widget.NestedScrollView>

1 个答案:

答案 0 :(得分:5)

RecyclerViewNestedScrollView内时不回收其项目。实际上,当您setNestedScrollingEnabled(false)获取视图时,它将完全展开,滚动行为应由其父级提供,在您的情况下为NestedScrollView。因此,如果您有一个无限RecyclerView,那么当项目数量增加时,内存和性能将会降低。但是,只要您的项目数量不是那么多会影响内存和性能,在RecyclerView内使用NestedScrollView并不错。但很明显,最好不要这样做。