如何在 CoordinatorLayout 中以垂直排列在其他两个视图之间放置一个视图?

How to place a view between two other views in a veritcal arrangement in CoordinatorLayout?

我有一个布局文件,其中我将 CollapsingToolbarLayoutRecyclerView 一起使用并且工作正常。现在我试图在我的 AppBarLayoutRecylerView 之间放置一个 ConstraintLayout。这是我到目前为止尝试过的:

<androidx.coordinatorlayout.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/collapsing_toolbar_layout"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <!--Some views-->
            </RelativeLayout>

            <androidx.appcompat.widget.Toolbar
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:id="@+id/toolbar"
                app:layout_collapseMode="pin"/>
        </com.google.android.material.appbar.CollapsingToolbarLayout>
    </com.google.android.material.appbar.AppBarLayout>

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

            <!--Some views-->
    </androidx.constraintlayout.widget.ConstraintLayout>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/beers_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

问题是,即使我将它放在 AppBarLayoutRecylerView 之间,它仍然位于 activity 的底部。谁能帮我把 ConstraintLayout 视图放在它们之间?谢谢

为什么不尝试将 RecyclerView 放入 ConstraintLayout

低于CollapsingToolbarLayout

<androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        <ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

      <!--Your views here with constraints-->

        <androidx.recyclerview.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toBottomOf="your last view"
                 />
    </ConstraintLayout>