当我将RecyclerView
放入NestedScrollView
时,onBindViewHolder
正在调用所有行,例如我有列表,其大小为30,则所有30行都会调用onBindViewHolder
甚至没有滚动
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
它正常工作。
答案 0 :(得分: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);
答案 1 :(得分:2)
高度问题导致的问题。
1)编辑NestedScrollView
&amp; RecyclerView
如下:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
......
app:layout_behavior="@string/appbar_scrolling_view_behavior">
.......
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_views"
android:layout_width="match_parent"
android:layout_height="wrap_content"
.....
/>
2)确保您已编译'com.android.support:recyclerview-v7:23.2.1'
答案 2 :(得分:1)
但是你为 NestedScrollView 设置 android:layout_height 为 wrap_content - 这里默认为零(因为没有内容)对他来说,在宣言时)。接下来,对于RecyclerView,您将 android:layout_height 设置为 match_parent - 此时此刻为0.因此,您的所有项目都有0高度。
因此,你有这样的情况。 解决方案:使用@dkarmazi https://stackoverflow.com/a/37558761/3546306上面的解决方案或尝试更改参数 android:layout_height 值。
答案 3 :(得分:1)
没错。因为您使用的是ScrollView
。ScrollView
不可回收,例如RecyclerView
或ListView
。它会在一个屏幕中显示所有包含这些内容的视图时间。你应该使用其他布局。