我基本上为我的底部导航视图设置了3个片段,所有片段都链接到activity.xml
activity.xml,我把片段标记放在这里。
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
app:defaultNavHost="true"
app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView2"
app:navGraph="@navigation/my_nav"
android:layout_width="409dp"
android:layout_height="599dp" />
my activity.java代码(特别是):
BottomNavigationView bottomNavigationView = findViewById(R.id.bottomNavigationView);
NavController navController = Navigation.findNavController(this, R.id.fragment);
NavigationUI.setupWithNavController(bottomNavigationView, navController);
现在的问题是,如果我在xml中使用fragment标记运行相同的java代码,它运行得很好,但建议我使用 <androidx.fragment.app.FragmentContainerView(linters)
但是在使用 <androidx.fragment.app.FragmentContainerView
,它在logcat中显示错误。
活动没有设置navcontroller
我在这个网站上看到了很多类似的错误和修复,比如fragmentcontainerview和navhostfragment
但现在的问题是,他们中的大多数都发布了kotlin代码,我尝试的少数java代码对我不起作用
或者谁能把这些代码翻译成java:
val navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host_fragment) as NavHostFragment
val navController = navHostFragment.navController
1条答案
按热度按时间pxq42qpu1#
尝试使用include:1.)使用导航主机frag创建一个content\u main
使用include in activity.xml: