gpt4 book ai didi

android - 添加到 FragmentContainerView 的 View 必须与 Fragment 关联

转载 作者:行者123 更新时间:2023-12-03 16:34:24 24 4
gpt4 key购买 nike

由于在两个 fragment 之间的工具栏中实现后退按钮存在困难,我决定开始熟悉 Navigation Graph。但我得到一个错误Views added to a FragmentContainerView must be associated with a Fragment. View android.widget.RelativeLayout{...} is not associated with a Fragment.这是带有 nav_host_fragment 的 .xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<layout ...
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="androidx.navigation.fragment.NavHostFragment"
app:navGraph="@navigation/nav_graph"
app:defaultNavHost="true">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBlack"
android:clickable="@{viewModel.isSearching ? false : true}"
android:focusable="@{viewModel.isSearching ? false : true}">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recent_recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="4dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="4dp"
android:background="@color/colorBlack"
tools:itemCount="10"
tools:listitem="@layout/search_user_layout" />

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/search_recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="4dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="4dp"
android:background="@color/colorBlack"
android:visibility="gone"
tools:itemCount="10"
tools:listitem="@layout/search_user_layout" />

<ProgressBar
android:id="@+id/loading"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:indeterminate="true"
android:visibility="@{viewModel.isSearching ? View.VISIBLE : View.GONE}" />
</RelativeLayout>
</fragment>
</layout>
有可能修复它吗?

最佳答案

检查您的 Fragment 的 onCreateView()布局膨胀。确保设置 attachToRoot 错误的inflater.inflate(R.layout.fragment_layout, container, false)它对我有用。

关于android - 添加到 FragmentContainerView 的 View 必须与 Fragment 关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62722162/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com