无法在片段标签上设置“app:layout_behavior”
Cannot set `app:layout_behavior` on fragment tag
我有一个简单的片段:
<?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
标签时实现相同的行为?
作为@MikeM。在他的评论中指出,app:layout_anchor="@id/tabLayout"
是问题所在。我删除了所有锚点属性并且它起作用了。
我有一个简单的片段:
<?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
标签时实现相同的行为?
作为@MikeM。在他的评论中指出,app:layout_anchor="@id/tabLayout"
是问题所在。我删除了所有锚点属性并且它起作用了。