我正在尝试在布局中实现一个持久的 Bottom Sheet -不能完全隐藏的工作表,但总是从底部偷看并可以扩展到最大高度。这是我的布局:

<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.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:orientation="vertical">

        <!-- main content -->

    </LinearLayout>

    <LinearLayout
        android:id="@+id/layoutBottomSheet"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center|bottom"
        android:background="@drawable/custom_background"
        android:clipToPadding="false"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        app:behavior_hideable="false"
        app:behavior_peekHeight="50dp"
        app:layout_behavior="@string/bottom_sheet_behavior">

        <!-- bottom sheet content -->

    </LinearLayout>

</android.support.design.widget.CoordinatorLayout>

我希望发生的事情是,一旦我降落在屏幕上,便可以看到底部的面板并将其折叠起来,但事实并非如此-它是隐藏的。我可以通过在bottomSheetBehaviour.setState(BottomSheetBehavior.STATE_EXPANDED)中调用onCreate()来显示它。奇怪的是,它只会稍微扩张-大于指定的窥视高度,但小于它应该占用的全部高度。在这种状态下,我可以将其上下拖动到应该的位置,并且可以正常工作。问题是屏幕上的初始着陆困惑了。

我敢肯定有一种方法可以使它正常工作,因此 Bottom Sheet 最初显示在它的窥视高度。有任何想法吗?

最佳答案

由于它经常发生-您在提出问题后便找到了答案。我的问题是在 Bottom Sheet View 上设置的android:layout_gravity="center|bottom"。删除固定它。

10-08 11:17