首页 > 解决方案 > 无法在片段标签上设置 `app:layout_behavior`

问题描述

我有一个简单的片段:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_anchor="@id/tabLayout"
        app:layout_anchorGravity="bottom"
        android:text="test" />
</LinearLayout>

SampleFragment2.kt我简单地膨胀上面的布局。

我将它包含在我的下方AppBarLayout并将app:layout_behaviour标签添加到它:

<com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
   <!-- ... -->
</com.google.android.material.appbar.AppBarLayout>

<fragment
        android:id="@+id/somefragment"
        android:name="com.company.sample.SampleFragment2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        app:layout_anchor="@id/tabLayout"
        app:layout_anchorGravity="bottom" />

这给了我运行时错误:

java.lang.ClassCastException: com.google.android.material.appbar.AppBarLayout$LayoutParams cannot be cast to androidx.coordinatorlayout.widget.CoordinatorLayout$LayoutParams

如果我省略fragment标签并简单地将LinearLayout片段中的 放在下面AppBarLayout并在那里添加app:layout_behavior标签,它就可以正常工作。

fragment使用标签时如何实现相同的行为?

标签: androidandroid-fragmentsandroid-xmlandroid-appbarlayout

解决方案


作为@MikeM。在他的评论中指出,app:layout_anchor="@id/tabLayout"是问题所在。我删除了所有锚属性并且它起作用了。


推荐阅读