You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mobile_navigation.xml 960B

12345678910111213141516171819202122232425
  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_map">
  7. <fragment
  8. android:id="@+id/navigation_map"
  9. android:name="com.example.meinwald.ui.map.MapsFragment"
  10. android:label="@string/title_map"
  11. tools:layout="@layout/fragment_map" />
  12. <fragment
  13. android:id="@+id/navigation_areas"
  14. android:name="com.example.meinwald.ui.area.AreaFragment"
  15. android:label="@string/title_areas"
  16. tools:layout="@layout/fragment_areas" />
  17. <fragment
  18. android:id="@+id/navigation_tasks"
  19. android:name="com.example.meinwald.ui.task.TasksFragment"
  20. android:label="@string/title_tasks"
  21. tools:layout="@layout/fragment_tasks" />
  22. </navigation>