BottomSheetBehaviour:视图与 BottomSheetBehavior 没有关联

BottomSheetBehaviour: The view is not associated with BottomSheetBehavior

我正在使用 Google 设计支持库 25.0.0 在我的 activity 中,我有一个

的相对布局
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"

现在,当我引用它来添加 BottomSheetBehaviour 时,出现错误

java.lang.IllegalArgumentException: The view is not associated with BottomSheetBehavior

布局如下:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/maps_colayout"
xmlns:app="http://schemas.android.com/tools"
android:fitsSystemWindows="true"
android:background="@color/white">

...

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="280dp"
    android:layout_gravity="bottom"
    android:id="@+id/rl_bottomsheet"
    android:background="#F3F3F3"
    app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

    ...

</RelativeLayout>

这里是activity相关代码:

CoordinatorLayout colayout = (CoordinatorLayout) findViewById(R.id.maps_colayout);
    View bottomSheet = colayout.findViewById(R.id.rl_bottomsheet);
    BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);
    behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
        @Override
        public void onStateChanged(@NonNull View bottomSheet, int newState) {
            // React to state change
        }

        @Override
        public void onSlide(@NonNull View bottomSheet, float slideOffset) {
            // React to dragging events
        }
    });

您声明的 app 命名空间有误。替换行:

xmlns:app="http://schemas.android.com/tools"

xmlns:app="http://schemas.android.com/apk/res-auto"

在布局文件中的 CoordinatorLayout 声明中。

tools 命名空间用于向 "tools"(例如 IDE)提供有关布局的附加信息。此信息已从应用程序中删除。

另一方面,app 命名空间是所有自定义(即未由 Android 系统声明)属性的全局命名空间,这些属性由您声明或由导入的库 (设计支持库是你的情况)。这些都包含在您的应用程序中。

那么 tools 命名空间究竟有什么用呢?最常见的用法是更好地呈现布局的预览。例如,假设您有一个 TextView,它最初应该是空的,然后再填充。

您可以向 TextView 声明添加一个属性:

tools:text="Some example text here"

此文本不会显示在您的应用中。但是,在您的 Android Studio 中呈现的布局预览将包含它,因此您可以在您的移动设备上看到预期的结果。

您需要在线性布局标记中添加此行。被引用的那个。

app:layout_behavior="android.support.design.widget.BottomSheetBehavior"

或 androidx

app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"

首先,如果使用androidX,则“app:layout_behavior="@string/bottom_sheet_behavior"”或app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"

其次,具有 bottomsheet 行为的视图必须是协调器布局的直接子项。

最后,删除该元素的 layout_widthlayout_height 属性(如果需要)以编程方式执行。

我希望能帮助到别人... 我 bottom_sheet.xml 是这样的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/bottom_sheet"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ffffff"
    android:orientation="vertical"
    android:padding="16dp"
    app:behavior_hideable="false"
    app:behavior_peekHeight="90dp"
    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
    
    .....
    
</LinearLayout>

然后我将我的 bottom_sheet.xml 包含到我的 activity.xml 中,例如:

<include
layout="@layout/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>

但这行不通。我有同样的错误:“视图与 BottomSheetBehavior 没有关联”

我将行为属性放在 Include 中,而不是底部,它起作用了:

<include
            layout="@layout/bottom_sheet"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:behavior_hideable="false"
            app:behavior_peekHeight="90dp"
            app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"/>