微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐