增加离线地图下载流程

This commit is contained in:
squallzhjch
2023-03-30 10:50:20 +08:00
parent 97a48237ba
commit 3a80a4ee5d
129 changed files with 1590 additions and 13847 deletions

View File

@@ -3,13 +3,13 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_graph"
app:startDestination="@id/FirstFragment">
app:startDestination="@id/PersonalCenterFragment">
<fragment
android:id="@+id/FirstFragment"
android:name="com.navinfo.omqs.ui.fragment.FirstFragment"
android:label="@string/first_fragment_label"
tools:layout="@layout/fragment_first">
android:id="@+id/PersonalCenterFragment"
android:name="com.navinfo.omqs.ui.fragment.personalcenter.PersonalCenterFragment"
android:label="@string/personal_center"
tools:layout="@layout/fragment_personal_center">
<action
android:id="@+id/action_FirstFragment_to_SecondFragment"
@@ -17,12 +17,12 @@
</fragment>
<fragment
android:id="@+id/SecondFragment"
android:name="com.navinfo.omqs.ui.fragment.SecondFragment"
android:name="com.navinfo.omqs.ui.fragment.offlinemap.OfflineMapFragment"
android:label="@string/second_fragment_label"
tools:layout="@layout/fragment_second">
tools:layout="@layout/fragment_offline_map">
<action
android:id="@+id/action_SecondFragment_to_FirstFragment"
app:destination="@id/FirstFragment" />
app:destination="@id/PersonalCenterFragment" />
</fragment>
</navigation>