Android 视图绑定:从包含的 xml 布局访问 NavHostFragment 时
Posted
技术标签:
【中文标题】Android 视图绑定:从包含的 xml 布局访问 NavHostFragment 时【英文标题】:Android View Binding: When accessing NavHostFragment from included xml layout 【发布时间】:2021-05-16 20:56:05 【问题描述】:我有activity_main.xml,启用ViewBinding
可以完美生成ActivityMainBinding
类。我有另一个 content_main.xml 布局,它包含在这个布局中,如下所示:
activity_main.xml
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_
android:layout_
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</com.google.android.material.appbar.AppBarLayout>
<include layout="@layout/content_main"
android:id="@+id/main_container"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
这里是 content_main.xml
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.varshakulkarni.videorecordwithlyricspoc.MainActivity"
tools:showIn="@layout/activity_main">
<!--This layout is created to place all the content below the AppBar without overlapping while scrolling.-->
<FrameLayout
android:id="@+id/content_frame"
android:layout_
android:layout_
android:fitsSystemWindows="true" />
<TextView
android:id="@+id/text_view"
android:layout_
android:layout_
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<!-- Update: replace this with androidx.fragment.app.FragmentContainerView -->
<fragment
android:id="@+id/nav_host"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_
android:layout_
app:defaultNavHost="true"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
在MainActivity
类中,在访问TextViews/Buttons等其他视图时,我们可以使用
binding.mainContainer.textView.text = "test"
,效果很好。
但是我们如何访问androidx.navigation.fragment.NavHostFragment
?
由于片段不是普通视图,因此出现此错误,“无法访问 'android.widget.fragment'。请检查您的模块类路径是否缺少或冲突的依赖项”
MainActivity.kt
binding.apply
//Works
mainContainer.textView.text = "test"
//throws "Cannot access 'android.widget.fragment'. Check your module classpath for missing or conflicting dependencies"
mainContainer.navHost.postDelayed(
binding.mainContainer.navHost.systemUiVisibility = FLAGS_FULLSCREEN
, IMMERSIVE_FLAG_TIMEOUT)
更新:当使用FragmentContainerView
时,此功能有效。
【问题讨论】:
你想访问androidx.navigation.fragment.NavHostFragment的目的是什么?您可以通过它的 id +id"nav_host" 访问它 【参考方案1】:要托管 navGraph ,您应该使用 FragmentContainerView
而不是 Fragment
并将 name 属性设置为:
android:name="androidx.navigation.fragment.NavHostFragment"
【讨论】:
是的,我这样做了,它已修复。我应该在里面写答案。我在问题本身内更新了!【参考方案2】:使用 findNavController 方法访问导航图。由于您延迟了一些可见性,请尝试使用可运行的方法 Handler().postDelayed
【讨论】:
感谢您的回答!我会尝试使用处理程序,但我的问题更具体到“视图绑定”。由于没有足够的声誉,我无法使用该标签。请点击此链接:medium.com/androiddevelopers/…以上是关于Android 视图绑定:从包含的 xml 布局访问 NavHostFragment 时的主要内容,如果未能解决你的问题,请参考以下文章