2bcf9e3cdb1f75914418af61cf1482e284cde69f.svn-base 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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/mobile_navigation"
  6. app:startDestination="@+id/nav_home">
  7. <fragment
  8. android:id="@+id/nav_home"
  9. android:name="com.example.myapplication.ui.home.HomeFragment"
  10. android:label="@string/menu_home"
  11. tools:layout="@layout/fragment_home" />
  12. <fragment
  13. android:id="@+id/nav_gallery"
  14. android:name="com.example.myapplication.ui.gallery.GalleryFragment"
  15. android:label="@string/menu_gallery"
  16. tools:layout="@layout/fragment_gallery" />
  17. <fragment
  18. android:id="@+id/nav_slideshow"
  19. android:name="com.example.myapplication.ui.slideshow.SlideshowFragment"
  20. android:label="@string/menu_slideshow"
  21. tools:layout="@layout/fragment_slideshow" />
  22. <fragment
  23. android:id="@+id/nav_tools"
  24. android:name="com.example.myapplication.ui.tools.ToolsFragment"
  25. android:label="@string/menu_tools"
  26. tools:layout="@layout/fragment_tools" />
  27. <fragment
  28. android:id="@+id/nav_share"
  29. android:name="com.example.myapplication.ui.share.ShareFragment"
  30. android:label="@string/menu_share"
  31. tools:layout="@layout/fragment_share" />
  32. <fragment
  33. android:id="@+id/nav_send"
  34. android:name="com.example.myapplication.ui.send.SendFragment"
  35. android:label="@string/menu_send"
  36. tools:layout="@layout/fragment_send" />
  37. </navigation>