以编程方式将片段加载到导航中
Load fragment into navigation programmatically
我在 android studio 的导航抽屉 Activity 模板中创建了一个新项目,我有以下 XML。
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_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/app_bar_main">
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/mobile_navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
mobile_navigation.xml
<?xml version="1.0" encoding="utf-8"?>
<navigation 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:id="@+id/mobile_navigation"
app:startDestination="@+id/nav_shopping_list">
<fragment
android:id="@+id/nav_products_list"
android:name="com.example.producttracker.ui.products_list.ProductsListFragment"
android:label="@string/menu_products_list"
tools:layout="@layout/fragment_products_list" />
</navigation>
问题是,当我的 product_list 片段中有一个按钮时,单击该按钮应该加载一个新片段来替换当前片段。但是,目前它只是在现有片段之上加载一个新片段。
用于加载新片段的代码:
AppCompatActivity activity = (AppCompatActivity) view.getContext();
Fragment inputFragment = new ProductInputFragment();
FragmentTransaction fragmentTransaction = activity.getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.nav_host_fragment, inputFragment);
fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
根据我的理解,原因是 product_list 片段不是以编程方式添加的,所以它不能被 FragmentManager 替换。如果是这种情况,我如何以编程方式加载该片段?我阅读了数百篇文章,但我仍然感到困惑,因为在我的情况下涉及导航。
我有一个 hacky 解决方案给你:
在您的布局中添加一个容器,根据您的要求隐藏和取消隐藏片段和容器。
我通过删除 FragmentTransaction
并将所有片段定义为导航目的地来解决问题。本教程很有用:
https://developer.android.com/guide/navigation/navigation-getting-started
我在 android studio 的导航抽屉 Activity 模板中创建了一个新项目,我有以下 XML。
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_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/app_bar_main">
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/mobile_navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
mobile_navigation.xml
<?xml version="1.0" encoding="utf-8"?>
<navigation 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:id="@+id/mobile_navigation"
app:startDestination="@+id/nav_shopping_list">
<fragment
android:id="@+id/nav_products_list"
android:name="com.example.producttracker.ui.products_list.ProductsListFragment"
android:label="@string/menu_products_list"
tools:layout="@layout/fragment_products_list" />
</navigation>
问题是,当我的 product_list 片段中有一个按钮时,单击该按钮应该加载一个新片段来替换当前片段。但是,目前它只是在现有片段之上加载一个新片段。
用于加载新片段的代码:
AppCompatActivity activity = (AppCompatActivity) view.getContext();
Fragment inputFragment = new ProductInputFragment();
FragmentTransaction fragmentTransaction = activity.getSupportFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.nav_host_fragment, inputFragment);
fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
根据我的理解,原因是 product_list 片段不是以编程方式添加的,所以它不能被 FragmentManager 替换。如果是这种情况,我如何以编程方式加载该片段?我阅读了数百篇文章,但我仍然感到困惑,因为在我的情况下涉及导航。
我有一个 hacky 解决方案给你:
在您的布局中添加一个容器,根据您的要求隐藏和取消隐藏片段和容器。
我通过删除 FragmentTransaction
并将所有片段定义为导航目的地来解决问题。本教程很有用:
https://developer.android.com/guide/navigation/navigation-getting-started