nav_main.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="utf-8"?><!--
  2. ~ Copyright (C) 2018, Umbrella CompanyLimited All rights reserved.
  3. ~ Project:Net
  4. ~ Author:Drake
  5. ~ Date:4/16/20 9:13 PM
  6. -->
  7. <navigation xmlns:android="http://schemas.android.com/apk/res/android"
  8. xmlns:app="http://schemas.android.com/apk/res-auto"
  9. xmlns:tools="http://schemas.android.com/tools"
  10. android:id="@+id/main"
  11. app:startDestination="@id/download_img">
  12. <fragment
  13. android:id="@+id/async_task"
  14. android:name="com.drake.net.sample.ui.fragment.AsyncTaskFragment"
  15. android:label="异步任务"
  16. tools:layout="@layout/fragment_async_task" />
  17. <fragment
  18. android:id="@+id/config_dialog"
  19. android:name="com.drake.net.sample.ui.fragment.ConfigDialogFragment"
  20. android:label="自动加载框"
  21. tools:layout="@layout/fragment_config_dialog" />
  22. <fragment
  23. android:id="@+id/coroutine_scope"
  24. android:name="com.drake.net.sample.ui.fragment.CoroutineScopeFragment"
  25. android:label="协程作用域"
  26. tools:layout="@layout/fragment_coroutine_scope" />
  27. <fragment
  28. android:id="@+id/custom_convert"
  29. android:name="com.drake.net.sample.ui.fragment.CustomConvertFragment"
  30. android:label="自定义转换器"
  31. tools:layout="@layout/fragment_custom_convert" />
  32. <fragment
  33. android:id="@+id/error_handler"
  34. android:name="com.drake.net.sample.ui.fragment.ErrorHandlerFragment"
  35. android:label="错误处理"
  36. tools:layout="@layout/fragment_error_handler" />
  37. <fragment
  38. android:id="@+id/exception_trace"
  39. android:name="com.drake.net.sample.ui.fragment.ExceptionTraceFragment"
  40. android:label="异常追踪"
  41. tools:layout="@layout/fragment_exception_trace" />
  42. <fragment
  43. android:id="@+id/interceptor"
  44. android:name="com.drake.net.sample.ui.fragment.InterceptorFragment"
  45. android:label="拦截器"
  46. tools:layout="@layout/fragment_interceptor" />
  47. <fragment
  48. android:id="@+id/pull_refresh"
  49. android:name="com.drake.net.sample.ui.fragment.PullRefreshFragment"
  50. android:label="自动分页加载"
  51. tools:layout="@layout/fragment_pull_refresh" />
  52. <fragment
  53. android:id="@+id/parallel_network"
  54. android:name="com.drake.net.sample.ui.fragment.ParallelNetworkFragment"
  55. android:label="并发网络任务"
  56. tools:layout="@layout/fragment_parallel_network" />
  57. <fragment
  58. android:id="@+id/push_refresh"
  59. android:name="com.drake.net.sample.ui.fragment.PushRefreshFragment"
  60. android:label="自动下拉刷新"
  61. tools:layout="@layout/fragment_push_refresh" />
  62. <fragment
  63. android:id="@+id/read_cache"
  64. android:name="com.drake.net.sample.ui.fragment.ReadCacheFragment"
  65. android:label="预读缓存"
  66. tools:layout="@layout/fragment_read_cache" />
  67. <fragment
  68. android:id="@+id/request_method"
  69. android:name="com.drake.net.sample.ui.fragment.RequestMethodFragment"
  70. android:label="请求方式"
  71. tools:layout="@layout/fragment_request_method" />
  72. <fragment
  73. android:id="@+id/state_layout"
  74. android:name="com.drake.net.sample.ui.fragment.StateLayoutFragment"
  75. android:label="自动缺省页"
  76. tools:layout="@layout/fragment_state_layout" />
  77. <fragment
  78. android:id="@+id/super_interval"
  79. android:name="com.drake.net.sample.ui.fragment.SuperIntervalFragment"
  80. android:label="超级轮循器"
  81. tools:layout="@layout/fragment_super_interval" />
  82. <fragment
  83. android:id="@+id/switch_dispatcher"
  84. android:name="com.drake.net.sample.ui.fragment.SwitchDispatcherFragment"
  85. android:label="切换调度器"
  86. tools:layout="@layout/fragment_switch_dispatcher" />
  87. <fragment
  88. android:id="@+id/download_file"
  89. android:name="com.drake.net.sample.ui.fragment.DownloadFileFragment"
  90. android:label="下载文件"
  91. tools:layout="@layout/fragment_download_file" />
  92. <fragment
  93. android:id="@+id/download_img"
  94. android:name="com.drake.net.sample.ui.fragment.DownloadImageFragment"
  95. android:label="下载图片"
  96. tools:layout="@layout/fragment_download_image" />
  97. <fragment
  98. android:id="@+id/upload_file"
  99. android:name="com.drake.net.sample.ui.fragment.UploadFileFragment"
  100. android:label="上传文件"
  101. tools:layout="@layout/fragment_upload_file" />
  102. </navigation>