forked from APIJSON/APIJSON-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_activity.xml
More file actions
162 lines (119 loc) · 5.38 KB
/
user_activity.xml
File metadata and controls
162 lines (119 loc) · 5.38 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/activity_page" >
<RelativeLayout style="@style/topbar_bg" >
<ImageView style="@style/topbar_return_img" />
<TextView
style="@style/topbar_title"
android:layout_centerHorizontal="true"
android:text="详细资料" />
</RelativeLayout>
<View style="@style/divider_horizontal_1px" />
<ScrollView
style="@style/match_match"
android:layout_weight="1" >
<LinearLayout style="@style/ll_vertical_match_match" >
<!-- 这些方式也可<<<<<<<<<<<<<<<<<<< -->
<!-- <apijson.demo.client.view.BaseViewLayout -->
<!-- android:id="@+id/bvlUser" -->
<!-- style="@style/match_wrap" > -->
<!-- </apijson.demo.client.view.BaseViewLayout> -->
<!-- <apijson.demo.client.view.UserViewLayout -->
<!-- android:id="@+id/uvlUser" -->
<!-- style="@style/match_wrap" > -->
<!-- </apijson.demo.client.view.UserViewLayout> -->
<!-- 这些方式也可>>>>>>>>>>>>>>>>>>> -->
<LinearLayout
android:id="@+id/llUserBusinessCardContainer"
style="@style/ll_vertical_match_wrap"
android:layout_marginBottom="@dimen/padding_huge"
android:layout_marginTop="@dimen/padding_huge" >
</LinearLayout>
<LinearLayout
android:id="@+id/llUserMoment"
style="@style/content_item_white"
android:layout_height="wrap_content"
android:minHeight="50dp" >
<TextView
style="@style/content_item_lf_tv_black"
android:text="个人相册" />
<GridView
android:id="@+id/gvUserMoment"
style="@style/content_item_rt"
android:layout_height="wrap_content"
android:layout_weight="1"
android:horizontalSpacing="6dp"
android:numColumns="3"
android:scrollbars="@null" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llUserRemark"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv_black"
android:text="备注" />
<TextView
android:id="@+id/tvUserRemark"
android:singleLine="true"
style="@style/content_item_rt_tv"
android:layout_weight="1" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llUserPhone"
style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv_black"
android:text="手机" />
<TextView
android:id="@+id/tvUserPhone"
style="@style/content_item_rt_tv"
android:layout_weight="1"
android:text="12345678900" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv_black"
android:text="地区" />
<TextView
style="@style/content_item_rt_tv"
android:layout_weight="1"
android:text="浙江杭州" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv_black"
android:text="邮箱" />
<TextView
style="@style/content_item_rt_tv"
android:layout_weight="1"
android:text="123456789@qq.com" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
<LinearLayout style="@style/content_item_white" >
<TextView
style="@style/content_item_lf_tv_black"
android:text="个性签名" />
<TextView
style="@style/content_item_rt_tv"
android:layout_weight="1"
android:text="还没想好呢~" />
<ImageView style="@style/content_item_rt_img" />
</LinearLayout>
<View style="@style/divider_horizontal_1px" />
</LinearLayout>
</ScrollView>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llUserBottomMenuContainer"
style="@style/ll_vertical_match_wrap" >
</LinearLayout>
</LinearLayout>