为什么带有<layout>标签的Layout在BottomSheetBehavior中不能正常工作?

时间:2019-07-27 15:28:44

标签: android data-binding android-databinding bottom-sheet

我正在尝试构建包含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之类的其他布局,一切都可以正常工作

0 个答案:

没有答案