main_nav_graph.xml 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/main_nav_graph"
  6. app:startDestination="@id/vehicleFragment">
  7. <!-- 车辆Fragment -->
  8. <fragment
  9. android:id="@+id/vehicleFragment"
  10. android:name="com.narutohuo.xindazhou.vehicle.ui.VehicleFragment"
  11. android:label="车辆"
  12. tools:layout="@android:layout/simple_list_item_1" />
  13. <!-- 社区Fragment -->
  14. <fragment
  15. android:id="@+id/communityFragment"
  16. android:name="com.narutohuo.xindazhou.community.ui.CommunityFragment"
  17. android:label="社区"
  18. tools:layout="@android:layout/simple_list_item_1" />
  19. <!-- 服务Fragment -->
  20. <fragment
  21. android:id="@+id/serviceFragment"
  22. android:name="com.narutohuo.xindazhou.service.ui.ServiceFragment"
  23. android:label="服务"
  24. tools:layout="@android:layout/simple_list_item_1" />
  25. <!-- 商城Fragment -->
  26. <fragment
  27. android:id="@+id/shopFragment"
  28. android:name="com.narutohuo.xindazhou.shop.ui.ShopFragment"
  29. android:label="商城"
  30. tools:layout="@android:layout/simple_list_item_1" />
  31. <!-- 我的Fragment -->
  32. <fragment
  33. android:id="@+id/userFragment"
  34. android:name="com.narutohuo.xindazhou.user.ui.profile.UserFragment"
  35. android:label="我的"
  36. tools:layout="@android:layout/simple_list_item_1" />
  37. </navigation>