Newer
Older
org.ntlab.acanthus_client / app / src / main / res / navigation / mobile_navigation.xml
  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/navigation_home">
  7.  
  8. <fragment
  9. android:id="@+id/navigation_home"
  10. android:name="org.ntlab.acanthus_client.views.main_menu_ui.home.HomeFragment"
  11. android:label="@string/title_home"
  12. tools:layout="@layout/fragment_home" />
  13. <fragment
  14. android:id="@+id/navigation_search"
  15. android:name="org.ntlab.acanthus_client.views.main_menu_ui.search.SearchFragment"
  16. android:label="@string/title_search"
  17. tools:layout="@layout/fragment_search" />
  18.  
  19. <fragment
  20. android:id="@+id/navigation_create"
  21. android:name="org.ntlab.acanthus_client.views.main_menu_ui.create.CreateFragment"
  22. android:label="@string/title_create"
  23. tools:layout="@layout/fragment_create" />
  24.  
  25. <fragment
  26. android:id="@+id/navigation_make"
  27. android:name="org.ntlab.acanthus_client.views.main_menu_ui.edit.EditFragment"
  28. android:label="@string/title_make"
  29. tools:layout="@layout/fragment_edit" />
  30. <fragment
  31. android:id="@+id/navigation_mypage"
  32. android:name="org.ntlab.acanthus_client.views.main_menu_ui.mypage.MyPageFragment"
  33. android:label="@string/title_mypage"
  34. tools:layout="@layout/fragment_mypage" />
  35. </navigation>