forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmine_fragment.xml
More file actions
executable file
·115 lines (86 loc) · 3.72 KB
/
mine_fragment.xml
File metadata and controls
executable file
·115 lines (86 loc) · 3.72 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/activity_page" >
<ScrollView
style="@style/ll_vertical_match_match"
android:layout_weight="1" >
<LinearLayout style="@style/ll_vertical_match_match" >
<ImageView
android:id="@+id/ivSettingHead"
android:layout_width="75dp"
android:layout_height="75dp"
android:layout_margin="@dimen/common_item_distance"
android:scaleType="centerCrop"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/tvSettingName"
style="@style/text_middle_black"
android:layout_marginBottom="30dp"
android:text="APIJSON" />
<LinearLayout
android:id="@+id/llSettingInfo"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv"
android:layout_weight="1"
android:text="我的资料" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llSettingMoment"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv"
android:layout_weight="1"
android:text="我的动态" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llSettingWallet"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv"
android:layout_weight="1"
android:text="我的钱包" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View
style="@style/divider_horizontal_1px"
android:layout_marginBottom="30dp" />
<LinearLayout
android:id="@+id/llSettingAbout"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv"
android:layout_weight="1"
android:text="关于应用" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llSettingTest"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv"
android:layout_weight="1"
android:text="测试简版" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llSettingLogout"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv"
android:layout_weight="1"
android:text="退出登录" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View
style="@style/divider_horizontal_1px"
android:layout_marginBottom="30dp" />
</LinearLayout>
</ScrollView>
</LinearLayout>