我在MainActivity中有一个这样的容器
<fragment
android:id="@+id/main"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="5dp"
android:paddingTop="5dp"
app:defaultNavHost="true"
app:layout_constraintBottom_toTopOf="@+id/bottomNavigation"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/adView"
app:navGraph="@navigation/main" />
在主要活动中这样使用它
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.replace(R.id.main, explorefragment);
fragmentTransaction.commit();
它显示了这一点
将标记替换为FragmentContainerView。
我如何替换主活动的代码
1条答案
按热度按时间f87krz0w1#
这就是你不需要写任何东西在主要活动
如果您使用它与底部导航然后
并确保底部导航视图中的导航目标ID和项目ID相同
在JAVA中