11

当我放入RecyclerView里面NestedScrollView时,onBindViewHolder会调用所有行,比如说我有大小为 30 的列表,然后onBindViewHolder一次调用所有 30 行,即使没有滚动

 RecyclerView list;
    LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
        list.setLayoutManager(layoutManager);
        layoutManager.setAutoMeasureEnabled(true);
        list.setNestedScrollingEnabled(false);
        list.addItemDecoration(new VerticalSpaceItemDecoration(5));
        list.setAdapter(adapter);

我的xml是

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    android:scrollbars="none"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">
 <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/grey">
    <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_views"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/info"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:textAlignment="center"

            android:visibility="visible"
           />

但如果我删除NestedScrollView它工作正常。

4

3 回答 3

2

我将假设由于您使用的是 appbar_scrolling_view_behavior,因此您正在尝试使用 AppBarLayout 做一些事情。

如果是这样,您可以将 RecyclerView 用作 CoordinatorLayout 的直接子级,并支持 AppBarLayout 滚动,而无需在 NestedScrollView 内嵌套 RecyclerView。

试试这个: CoordinatorLayout 内的 RecyclerView(带有 AppBarLayout 和 CollapsingToolbarLayout):

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="80dp"
                android:background="#55FF00FF"
                app:layout_collapseMode="none"/>

        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>

在您的 Activity 或 CustomView 中:

RecyclerView list;
LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
list.setLayoutManager(layoutManager);
list.addItemDecoration(new VerticalSpaceItemDecoration(5));
list.setAdapter(adapter);
于 2016-06-01T03:08:03.257 回答
1

但是您将NestedScrollViewandroid:layout_height设置为wrap_content - 这里默认为零(因为在声明时他没有内容)。接下来,对于 RecyclerView,您将android:layout_height设置为match_parent - 目前为 0。因此,您的所有项目的高度均为 0。

因此,你有这样的情况。解决方案:使用来自@dkarmazi https://stackoverflow.com/a/37558761/3546306的上述解决方案或尝试更改参数 android:layout_height值。

于 2016-06-01T03:16:31.947 回答
1

没错。因为您使用的是ScrollView. ScrollView不像RecyclerView或那样可回收ListView。它会一次显示所有包含这些屏幕外的视图。您应该改用其他布局。

于 2016-06-08T01:14:18.950 回答