main.xml
2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:startDestination="@id/navigation_home">
<!-- <action-->
<!-- android:id="@+id/action_show_home"-->
<!-- app:destination="@id/navigation_home" />-->
<!-- <action-->
<!-- android:id="@+id/action_show_sort"-->
<!-- app:destination="@id/navigation_sort" />-->
<fragment
android:id="@+id/navigation_home"
android:name="com.lhcredit.zqyj.module.home.HomeFragment"
android:label="@string/title_home">
<argument
android:name="pageName"
android:defaultValue="homeFragment" />
</fragment>
<fragment
android:id="@+id/navigation_sort"
android:name="com.lhcredit.zqyj.module.home.HomeFragment"
android:label="@string/title_sort">
<argument
android:name="pageName"
android:defaultValue="sortFragment" />
</fragment>
<fragment
android:id="@+id/navigation_find"
android:name="com.lhcredit.zqyj.module.home.HomeFragment"
android:label="@string/title_find">
<argument
android:name="pageName"
android:defaultValue="findFragment" />
</fragment>
<fragment
android:id="@+id/navigation_cart"
android:name="com.lhcredit.zqyj.module.home.HomeFragment"
android:label="@string/title_cart">
<argument
android:name="pageName"
android:defaultValue="cartFragment" />
</fragment>
<fragment
android:id="@+id/navigation_mine"
android:name="com.lhcredit.zqyj.module.home.HomeFragment"
android:label="@string/title_mine">
<argument
android:name="pageName"
android:defaultValue="mineFragment" />
<!-- <action-->
<!-- android:id="@+id/showSort"-->
<!-- app:destination="@id/sortFragment" />-->
<!-- <action-->
<!-- android:id="@+id/showFind"-->
<!-- app:destination="@id/findFragment" />-->
<!-- <action-->
<!-- android:id="@+id/showCart"-->
<!-- app:destination="@id/cartFragment" />-->
</fragment>
</navigation>