java.lang.IllegalArgumentException: действие/пункт назначения навигации

Я создаю приложение для заметок. Я хочу сохранить заметку, когда пользователь нажимает кнопку «Назад» из createNotesFragment и завершает createNotesFragment, чтобы я мог перейти к homeFragment. Код, который я использовал для этого, приведен ниже:

      activity?.onBackPressedDispatcher?.addCallback(this){
            saveNote()
            activity?.supportFragmentManager?.popBackStack()
        }

Это работает нормально. Но когда я пытаюсь снова открыть createNotesFragment, чтобы добавить еще одну заметку, он показывает мне эту ошибку.

      E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.example.lavanianotesapp, PID: 4952
    java.lang.IllegalArgumentException: Navigation action/destination com.example.lavanianotesapp:id/action_homeFragment_to_createNotesFragment cannot be found from the current destination Destination(com.example.lavanianotesapp:id/createNotesFragment) label=fragment_create_notes class=com.example.lavanianotesapp.UI.Fragments.CreateNotesFragment
        at androidx.navigation.NavController.navigate(NavController.kt:1540)
        at androidx.navigation.NavController.navigate(NavController.kt:1472)
        at androidx.navigation.NavController.navigate(NavController.kt:1454)
        at androidx.navigation.NavController.navigate(NavController.kt:1437)

Вот мой навигационный график

      <?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/nav_graph"
    app:startDestination="@id/homeFragment">

    <fragment
        android:id="@+id/homeFragment"
        android:name="com.example.lavanianotesapp.UI.Fragments.HomeFragment"
        android:label="fragment_home"
        tools:layout="@layout/fragment_home" >
        <action
            android:id="@+id/action_homeFragment_to_createNotesFragment"
            app:destination="@id/createNotesFragment" />
        <action
            android:id="@+id/action_homeFragment_to_editNotesFragment"
            app:destination="@id/editNotesFragment" />
    </fragment>
    <fragment
        android:id="@+id/createNotesFragment"
        android:name="com.example.lavanianotesapp.UI.Fragments.CreateNotesFragment"
        android:label="fragment_create_notes"
        tools:layout="@layout/fragment_create_notes" >
        <action
            android:id="@+id/action_createNotesFragment_to_homeFragment"
            app:destination="@id/homeFragment" />
        <action
            android:id="@+id/action_createNotesFragment_to_addLabelFragment"
            app:destination="@id/addLabelFragment" />
    </fragment>
    <fragment
        android:id="@+id/editNotesFragment"
        android:name="com.example.lavanianotesapp.UI.Fragments.EditNotesFragment"
        android:label="fragment_edit_notes"
        tools:layout="@layout/fragment_edit_notes" >
        <action
            android:id="@+id/action_editNotesFragment_to_homeFragment"
            app:destination="@id/homeFragment" />
        <action
            android:id="@+id/action_editNotesFragment_to_addLabelFragment"
            app:destination="@id/addLabelFragment" />
    </fragment>
    <fragment
        android:id="@+id/addLabelFragment"
        android:name="com.example.lavanianotesapp.UI.Fragments.AddLabelFragment"
        android:label="fragment_add_label"
        tools:layout="@layout/fragment_add_label" >
        <action
            android:id="@+id/action_addLabelFragment_to_createNotesFragment"
            app:destination="@id/createNotesFragment" />
        <action
            android:id="@+id/action_addLabelFragment_to_editNotesFragment"
            app:destination="@id/editNotesFragment" />
    </fragment>
</navigation>

Я не понимаю, почему после popBackStack() я не могу снова открыть createNotesFragment. Есть ли альтернатива popBackStack или что мне не хватает?

1 ответ

навигационный файл,

      
 <fragment
        android:id="@+id/createNotesFragment" 
  android:name="com.example.lavanianotesapp.UI.Fragments.CreateNotesFragment"
        android:label="@string/fragment_create_notes"
        tools:layout="@layout/fragment_create_notes">
        <action
            android:id="@+id/action_createNotesFragment_to_homeFragment"
            app:destination="@id/nav_home"
            app:launchSingleTop="true"
            app:popUpTo="@id/nav_trip"
            app:popUpToInclusive="true">
            <argument
                android:name="trip_info_response"
                android:defaultValue="@null"
                app:argType="com.example.lavanianotesapp.UI.entities.TripInfoData"
                app:nullable="true" />
        </action>

Пользователь нажимает кнопку «Назад» в файле createNotesFragment,

      activity?.onBackPressedDispatcher?.addCallback(this){
            saveNote()
            findNavController().popBackStack()
        }
Другие вопросы по тегам