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>

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...