Android recyclerview 在带有粘性的低端设备上不滚动 header - 为什么?

Android recyclerview not scrolling on lower end devices with sticky header - why?

我有这个问题,我的 recyclerview 在 api 19 (lollipop) 上不做嵌套滚动......在 android 的最新版本上没问题。 使用以下依赖项:com.android.support:design:26.1.0

我创建的是一个 recyclerview,它应该有一个粘性 header。 header 在卡片视图中,列表项在卡片视图下方。它看起来像这样:

detailscreen.xml:

 <!--wrapping in RelativeLayout until this is resolved: 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<androidx.cardview.widget.CardView
    android:id="@+id/headerView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:elevation="4dp">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp">

        <TextView
            android:id="@+id/tv_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:text="@string/ride_hail_meet_at"
            android:textColor="#388bf2"
            app:layout_constraintBottom_toTopOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent" />



        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rv_weatherdata"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:nestedScrollingEnabled="false"
            android:orientation="horizontal"
            app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
            app:layout_constraintLeft_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/tv_description"
            tools:itemCount="3"
            tools:listitem="@layout/weather_data_row_item"
            tools:visibility="visible" />

    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>

<RelativeLayout
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/headerView"
    android:layout_alignParentBottom="true"
    android:background="@color/white">


<!--  THIS IS THE RECYCLERVIEW GIVING ME THE PROBLEMS. ITS NOT SCROLLING ON API 19 , WHY ??? -->


    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/rv_directions"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="16dp"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
        tools:itemCount="5"
        tools:listitem="@layout/ride_direction_row" />


</RelativeLayout>

当我给这个东西充气时,它被放置在 CoordinatorLayout 自定义视图中。该容器本身可以滚动。它适用于 android 的最新版本但不适用于棒棒糖,我做错了什么?我什至尝试使用 appBarLayout 并将我的 headerView 放入其中,但同样的事情只是在 android 的旧版本上,无法正常工作。如果您能提出更好的方法,我愿意完全改变 xml 吗?

注意:设置 android:nestedScrollingEnabled = false 将导致我的 recyclerView 无法回收视图。我在列表中有大图像,所以我需要这个功能。

您必须将 android:layout_height 设置为 match_parent 或固定大小。

<androidx.recyclerview.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

如果您将其设置为 wrap_content,它将扩展到其内容的大小,因此不会滚动。

太奇怪了,这是我解决问题的唯一方法:

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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">

    <androidx.recyclerview.widget.RecyclerView
      android:id="@+id/recyclerview"
      android:layout_width="match_parent"
      android:layout_height="match_parent"

      app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <com.google.android.material.appbar.AppBarLayout
      android:id="@+id/appbar"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"    
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

      <com.google.android.material.appbar.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleGravity="bottom"
        app:expandedTitleMarginEnd="@dimen/activity_horizontal_margin"
        app:expandedTitleMarginStart="@dimen/activity_horizontal_margin"
        app:layout_scrollFlags="noScroll"

        app:title="@string/app_name">

        <ImageView
          android:id="@+id/toolbar_image"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:adjustViewBounds="true"
          android:contentDescription="@null"
          android:fitsSystemWindows="true"
          android:scaleType="centerCrop"
          android:src="@drawable/beach_huts" />


      </com.google.android.material.appbar.CollapsingToolbarLayout>
    </com.google.android.material.appbar.AppBarLayout>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

太奇怪了,这对一切都有效..谢谢大家。他们的关键是我需要将 recyclerView 放在首位。然后定义 appbar 的东西。