Advertisement
Guest User

Untitled

a guest
Jan 30th, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.27 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.    android:id="@+id/nav_home"
  5.    app:startDestination="@id/nav_posts">
  6.  
  7.     <include app:graph="@navigation/nav_posts" />
  8.     <include app:graph="@navigation/nav_users" />
  9. </navigation>
  10.  
  11. ////////////
  12.  
  13. <?xml version="1.0" encoding="utf-8"?>
  14. <navigation xmlns:android="http://schemas.android.com/apk/res/android"
  15.    xmlns:app="http://schemas.android.com/apk/res-auto"
  16.    xmlns:tools="http://schemas.android.com/tools"
  17.    android:id="@+id/nav_posts"
  18.    app:startDestination="@id/postsFragment">
  19.  
  20.     <fragment
  21.        android:id="@+id/postsFragment"
  22.        android:name="com.feature_posts.list.PostsFragment"
  23.        android:label="posts_fragment"
  24.        tools:layout="@layout/posts_fragment" >
  25.         <action
  26.            android:id="@+id/action_postsFragment_to_postFragment"
  27.            app:destination="@id/postFragment"
  28.            app:popUpTo="@id/postsFragment" />
  29.     </fragment>
  30.     <fragment
  31.        android:id="@+id/postFragment"
  32.        android:name="com.feature_posts.info.PostFragment"
  33.        android:label="post_fragment"
  34.        tools:layout="@layout/post_fragment" />
  35. </navigation>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement