android – 如何让RecyclerView在NestedScrollView中做回收?

我试图将几个视图(包括RecyclerView)放入NestedScrollView中.我使用了setNestedScrollingEnabled(false),它看起来很适合小数据集,但对于较大的数据集开始变得迟钝.

在花了一些时间记录onCreateViewHolder()方法之后,我明白了recycleler视图会一次创建它们作为旧的ListView.我试图在RecyclerView文档中找到这种行为的原因,但我在ScrollView description中找到了它:

You should never use a ScrollView with a ListView, because ListView
takes care of its own vertical scrolling. Most importantly, doing this
defeats all of the important optimizations in ListView for dealing
with large lists, since it effectively forces the ListView to display
its entire list of items to fill up the infinite container supplied by
ScrollView.

我希望NestedScrollView可以解决这个问题,但似乎没有.

有没有什么方法,例如,使用一些自定义LayoutManager来使用RecyclerView优化视图回收?

附:当然,我知道方法getItemViewType(int pos)以及使用这种技术添加自定义页眉和页脚的可能性,但对我来说它看起来像一个丑陋的解决方法.是的,我现在正在使用它,因为拥有比这么大的性能问题更难维护的代码更好.

最佳答案 您需要更改您的布局,如下所示,您使用的是NestedScrollView,而不是需要在RecyclerView中添加android:nestedScrollingEnabled属性

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:card_view="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/YOUR_NEESTED_SCROLLVIEW"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

    </android.support.v4.widget.NestedScrollView>
</LinearLayout>
点赞