我正在尝试构建包含bottom_sheet
的布局,并且我有一个简单的示例:
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent">
<include layout="@layout/bottom_sheet_layout" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
我正在 BottomSheetDialogFragment(bottom_sheet_layout)中使用data-binding
,如下所示:
<layout 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"
app:behavior_peekHeight="0dp"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
//.... content
</androidx.constraintlayout.widget.ConstraintLayout>
问题在于app:behavior_peekHeight="0dp"
属性不起作用,bottom_sheet_layout
的出现不受此属性的影响。
如果我将<layout>
换成LinearLayout
之类的其他布局,一切都可以正常工作