此NavController未知导航目的地

When I clicked on the button this thing is happening 

navigation destination com.android.example.cameraxbasic:id/action_camera_to_gallery is unknown to this NavController

这是我的代码片段

container.findViewById<ImageButton>(R.id.photo_view_button).setOnClicklistener {
        Navigation.findNavController(requireactivity(),R.id.fragment_container).navigate(
                CameraFragmentDirections.actionCameraToGallery(outputDirectory.absolutePath))
    }

This is a full error description

ldxzzm 回答:此NavController未知导航目的地

在我的情况下,我使用的HomeFragment在HomeFragment中具有FragmentOne和FragmentTwo

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context=".HomeFragment">


    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="729dp"
        android:fillViewport="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <androidx.fragment.app.FragmentContainerView
                android:id="@+id/fragmentOne"
                android:name="com.example.FragmentOne"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <androidx.fragment.app.FragmentContainerView
                android:id="@+id/fragmentTwo"
                android:name="com.example.FragmentTwo"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/fragmentCarosuel" />
        </androidx.constraintlayout.widget.ConstraintLayout>

    </androidx.core.widget.NestedScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>

我的nav_main.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_home">

    <fragment
        android:id="@+id/nav_home"
        android:name="com.example.HomeFragment"
        android:label="@string/menu_home"
        tools:layout="@layout/fragment_home">

        <action
            android:id="@+id/action_main_to_fragment_three"
            app:destination="@id/fragmentThree" />
    </fragment>  


    <fragment
        android:id="@+id/fragmentThree"
        android:name="com.example.FragmentThree"
        android:label="fragment_three"
        tools:layout="@layout/fragment_three" >
    </fragment>
</navigation>

现在,我正在从FragmentTwo导航任何点击事件,等等:

注意:请确保在navGraph中选择导航目标时。在这里我使用两个子片段(FragmentOne和FragmentTwo),但是我的基本片段是HomeFragment。所以我必须从HomeFragment采取行动。如果有人从FragmentOne创建目标,则HomeFragment无法访问该目标,并且NavController无法识别。

HomeFragmentDirections.ActionMainToFragmentThree nextAction = HomeFragmentDirections.actionMainToFragmentThree();
        NavController navController = NavHostFragment.findNavController(this);
        navController.navigate(nextAction);

对不起,英语不好。谢谢

本文链接:https://www.f2er.com/3022611.html

大家都在问