BottomSheet peekHeight ниже переработчика просмотра или любого представления - PullRequest
0 голосов
/ 31 января 2019

Я хочу BottomSheet ниже RecyclerView .Я не хочу назначать фиксированное значение нижнему листу peekHeight .

Есть ли какой-либо метод для его установки с помощью layout_below или чего-либо еще, что размещает нижний лист под обзором реселлера?

<RelativeLayout
    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"
    tools:context=".Fragments.FragmentHome">

    <include
        android:id="@+id/layout_home_toolbar"
        layout="@layout/custom_toolbar" />

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/layout_home_coordinator"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/layout_home_toolbar">

        <TextView
            android:id="@+id/tv_home_featured"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/rv_home_top"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            app:layout_anchor="@id/tv_home_featured"
            app:layout_anchorGravity="bottom" />

        <RelativeLayout
            android:id="@+id/bottom_sheet"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"                
    app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

            <TextView
                android:id="@+id/tv_home_near"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </RelativeLayout>
    </CoordinatorLayout>
</RelativeLayout>
...