fac86401
孙向锦
初始化C5 Vote
|
1
2
3
4
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
|
74a0ade9
孙向锦
添加长度定义文件
|
5
|
android:background="#0952B5"
|
4c3de86c
孙向锦
UI改版第一版
|
6
7
8
9
|
android:orientation="vertical">
<LinearLayout
android:id="@+id/result_layout"
android:layout_width="wrap_content"
|
fac86401
孙向锦
初始化C5 Vote
|
10
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
11
12
13
14
|
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:orientation="vertical">
|
fac86401
孙向锦
初始化C5 Vote
|
15
16
|
<TextView
|
4c3de86c
孙向锦
UI改版第一版
|
17
|
android:id="@+id/fragment_memo"
|
fac86401
孙向锦
初始化C5 Vote
|
18
19
|
android:layout_width="fill_parent"
android:layout_height="wrap_content"
|
fac86401
孙向锦
初始化C5 Vote
|
20
|
android:gravity="center"
|
4c3de86c
孙向锦
UI改版第一版
|
21
|
android:text="表决结果"
|
fac86401
孙向锦
初始化C5 Vote
|
22
|
android:textColor="@color/white"
|
74a0ade9
孙向锦
添加长度定义文件
|
23
|
android:textSize="@dimen/px72dp"
|
4c3de86c
孙向锦
UI改版第一版
|
24
|
android:textStyle="bold" />
|
fac86401
孙向锦
初始化C5 Vote
|
25
26
|
<TextView
|
4c3de86c
孙向锦
UI改版第一版
|
27
28
|
android:id="@+id/fragment_result_memo"
android:layout_width="fill_parent"
|
fac86401
孙向锦
初始化C5 Vote
|
29
|
android:layout_height="wrap_content"
|
74a0ade9
孙向锦
添加长度定义文件
|
30
|
android:layout_marginTop="@dimen/px52dp"
|
4c3de86c
孙向锦
UI改版第一版
|
31
32
|
android:gravity="center"
android:text="通过"
|
74a0ade9
孙向锦
添加长度定义文件
|
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
|
android:textColor="@color/white"
android:textSize="@dimen/px140dp"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:layout_width="800dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/result_layout"
android:layout_marginTop="@dimen/px65dp"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="@string/yindao1"
android:textColor="@color/yellow"
android:textSize="@dimen/big_text_p3"
android:textStyle="bold" />
<TextView
android:id="@+id/yingdaoresult"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="60dp"
android:layout_weight="1"
android:gravity="left"
android:text="150"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p3" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="60dp"
android:layout_weight="1"
android:gravity="right"
android:text="@string/shidao1"
|
4c3de86c
孙向锦
UI改版第一版
|
75
|
android:textColor="@color/yellow"
|
74a0ade9
孙向锦
添加长度定义文件
|
76
|
android:textSize="@dimen/big_text_p3"
|
4c3de86c
孙向锦
UI改版第一版
|
77
|
android:textStyle="bold" />
|
74a0ade9
孙向锦
添加长度定义文件
|
78
79
80
81
82
83
84
85
86
87
88
89
|
<TextView
android:id="@+id/shidaoresult"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:gravity="left"
android:text="150"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p3" />
|
4c3de86c
孙向锦
UI改版第一版
|
90
|
</LinearLayout>
|
fac86401
孙向锦
初始化C5 Vote
|
91
|
|
fac86401
孙向锦
初始化C5 Vote
|
92
|
<RelativeLayout
|
4c3de86c
孙向锦
UI改版第一版
|
93
94
|
android:id="@+id/data_title_layout"
android:layout_width="match_parent"
|
fac86401
孙向锦
初始化C5 Vote
|
95
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
96
97
|
android:layout_below="@id/result_layout"
android:layout_marginTop="20dp">
|
fac86401
孙向锦
初始化C5 Vote
|
98
|
|
4c3de86c
孙向锦
UI改版第一版
|
99
100
101
|
<LinearLayout
android:id="@+id/t_result"
android:layout_width="800dp"
|
fac86401
孙向锦
初始化C5 Vote
|
102
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
103
104
|
android:layout_centerHorizontal="true"
android:orientation="horizontal">
|
fac86401
孙向锦
初始化C5 Vote
|
105
|
|
4c3de86c
孙向锦
UI改版第一版
|
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
|
<TextView
android:id="@+id/title1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="@string/agree"
android:textColor="@color/yellow"
android:textSize="@dimen/big_text_p3" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="@string/oppose"
android:textColor="@color/yellow"
android:textSize="@dimen/big_text_p3" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="@string/abstant"
android:textColor="@color/yellow"
android:textSize="@dimen/big_text_p3" />
</LinearLayout>
|
fac86401
孙向锦
初始化C5 Vote
|
134
|
</RelativeLayout>
|
4c3de86c
孙向锦
UI改版第一版
|
135
136
137
138
139
140
|
<View
android:id="@+id/line"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/data_title_layout"
|
fac86401
孙向锦
初始化C5 Vote
|
141
|
android:layout_marginTop="10dp"
|
4c3de86c
孙向锦
UI改版第一版
|
142
|
android:background="#B2FFFFFF" />
|
fac86401
孙向锦
初始化C5 Vote
|
143
|
|
4c3de86c
孙向锦
UI改版第一版
|
144
145
146
147
148
149
|
<RelativeLayout
android:id="@+id/data_result_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/line"
android:background="#064AA3">
|
fac86401
孙向锦
初始化C5 Vote
|
150
|
|
4c3de86c
孙向锦
UI改版第一版
|
151
152
153
|
<LinearLayout
android:id="@+id/d_result"
android:layout_width="800dp"
|
fac86401
孙向锦
初始化C5 Vote
|
154
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
155
156
|
android:layout_centerHorizontal="true"
android:orientation="horizontal">
|
fac86401
孙向锦
初始化C5 Vote
|
157
|
|
4c3de86c
孙向锦
UI改版第一版
|
158
159
160
161
162
163
164
165
166
167
|
<TextView
android:id="@+id/result1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="150"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
|
fac86401
孙向锦
初始化C5 Vote
|
168
|
|
fac86401
孙向锦
初始化C5 Vote
|
169
|
|
4c3de86c
孙向锦
UI改版第一版
|
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
<TextView
android:id="@+id/result2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="0"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
<TextView
android:id="@+id/result3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="0"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
</LinearLayout>
|
fac86401
孙向锦
初始化C5 Vote
|
193
|
|
fac86401
孙向锦
初始化C5 Vote
|
194
|
</RelativeLayout>
|
4c3de86c
孙向锦
UI改版第一版
|
195
196
197
198
199
200
201
202
|
<View
android:id="@+id/line2"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/data_result_layout"
android:background="#B2FFFFFF" />
|
fac86401
孙向锦
初始化C5 Vote
|
203
|
<RelativeLayout
|
4c3de86c
孙向锦
UI改版第一版
|
204
205
|
android:id="@+id/pesent_result_layout"
android:layout_width="match_parent"
|
fac86401
孙向锦
初始化C5 Vote
|
206
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
207
208
209
210
211
|
android:layout_below="@id/line2">
<LinearLayout
android:id="@+id/p_result"
android:layout_width="800dp"
|
fac86401
孙向锦
初始化C5 Vote
|
212
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
android:layout_centerHorizontal="true"
android:orientation="horizontal">
<TextView
android:id="@+id/p1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="100%"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
<TextView
android:id="@+id/p2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="0%"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
<TextView
android:id="@+id/p3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="0%"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p2"
android:textStyle="bold" />
</LinearLayout>
|
fac86401
孙向锦
初始化C5 Vote
|
251
|
</RelativeLayout>
|
4c3de86c
孙向锦
UI改版第一版
|
252
253
254
255
256
257
258
|
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/pesent_result_layout"
android:background="#B2FFFFFF" />
|
fac86401
孙向锦
初始化C5 Vote
|
259
|
<RelativeLayout
|
4c3de86c
孙向锦
UI改版第一版
|
260
261
|
android:id="@+id/fragment_result_vote_top_panel"
android:layout_width="match_parent"
|
fac86401
孙向锦
初始化C5 Vote
|
262
|
android:layout_height="wrap_content"
|
fac86401
孙向锦
初始化C5 Vote
|
263
|
android:layout_alignParentBottom="true"
|
4c3de86c
孙向锦
UI改版第一版
|
264
|
android:layout_marginBottom="30dp">
|
fac86401
孙向锦
初始化C5 Vote
|
265
|
|
4c3de86c
孙向锦
UI改版第一版
|
266
|
|
4c3de86c
孙向锦
UI改版第一版
|
267
268
269
270
|
<TextView
android:id="@+id/fragment_result_bill_title"
android:layout_width="fill_parent"
|
fac86401
孙向锦
初始化C5 Vote
|
271
|
android:layout_height="wrap_content"
|
4c3de86c
孙向锦
UI改版第一版
|
272
273
274
275
276
277
278
|
android:layout_centerHorizontal="true"
android:layout_marginLeft="80dp"
android:layout_marginRight="80dp"
android:gravity="center"
android:textColor="@color/white"
android:textStyle="bold"
android:visibility="gone" />
|
fac86401
孙向锦
初始化C5 Vote
|
279
280
|
</RelativeLayout>
</RelativeLayout>
|