无法在片段标记上设置`app:layout_behavior`

问题描述 投票:0回答:1

我有一个简单的片段:

<?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标签时如何实现相同的行为?

android android-fragments android-xml android-appbarlayout
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.