Rika_Z

nav_graph

Feb 5th, 2022
1,614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.75 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <navigation xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:id="@+id/nav_graph"
  6.    android:label="Journal"
  7.    app:startDestination="@id/mainFragment">
  8.  
  9.     <fragment
  10.        android:id="@+id/mainFragment"
  11.        android:name="com.rapiraapps.android.myapplication.Fragments.Main.MainFragment"
  12.        android:label="Main"
  13.        tools:layout="@layout/fragment_main">
  14.        <!--that his action-->
  15.         <action
  16.            android:id="@+id/action_mainFragment_to_journalFragment"
  17.            app:destination="@id/journalFragment" />
  18.         <action
  19.            android:id="@+id/action_mainFragment_to_addDialogFragment"
  20.            app:destination="@id/addDialogFragment" />
  21.     </fragment>
  22.     <fragment
  23.        android:id="@+id/journalFragment"
  24.        android:name="com.rapiraapps.android.myapplication.Fragments.Journal.JournalFragment"
  25.        android:label="Journal"
  26.        tools:layout="@layout/fragment_journal">
  27.         <action
  28.            android:id="@+id/action_journalFragment_to_mainFragment"
  29.            app:destination="@id/mainFragment" />
  30.         <action
  31.            android:id="@+id/action_journalFragment_to_addDialogFragment"
  32.            app:destination="@id/addDialogFragment" />
  33.     </fragment>
  34.     <dialog
  35.        android:id="@+id/addDialogFragment"
  36.        android:name="com.rapiraapps.android.myapplication.Fragments.Dialog.AddDialogFragment"
  37.        android:label="Dialog" >
  38.         <action
  39.            android:id="@+id/action_addDialogFragment_to_journalFragment"
  40.            app:destination="@id/journalFragment" />
  41.     </dialog>
  42. </navigation>
Advertisement
Add Comment
Please, Sign In to add comment