Blame view

C5/app/src/main/res/layout/fragment_election.xml 17.6 KB
fac86401   孙向锦   初始化C5 Vote
1
2
3
4
5
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@+id/election_layout"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
c83dd29b   孙向锦   选举界面UI修改
6
      android:background="@color/votebakground">
fac86401   孙向锦   初始化C5 Vote
7
  
c83dd29b   孙向锦   选举界面UI修改
8
9
      <LinearLayout
          android:id="@+id/line_panel"
fac86401   孙向锦   初始化C5 Vote
10
11
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
12
          android:background="@color/red2"
c83dd29b   孙向锦   选举界面UI修改
13
14
15
16
17
18
19
20
21
22
23
24
25
26
          android:orientation="horizontal"
          android:paddingBottom="20dp"
          android:paddingLeft="20dp"
          android:paddingRight="80dp"
          android:paddingTop="20dp">
  
          <TextView
              android:id="@+id/election_title"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_weight="1"
              android:ellipsize="end"
              android:lines="1"
              android:text="@string/sunvote_no_paper"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
27
              android:textStyle="bold"
c83dd29b   孙向锦   选举界面UI修改
28
29
30
31
32
33
34
              android:textColor="@color/white"
              android:textSize="@dimen/big_text_p4" />
  
          <TextView
              android:id="@+id/election_info"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
35544865   孙向锦   选举bug 修复
35
              android:layout_marginRight="20dp"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
36
              android:textColor="@color/white"
c83dd29b   孙向锦   选举界面UI修改
37
              android:text=""
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
38
              android:textStyle="bold"
35544865   孙向锦   选举bug 修复
39
40
41
42
              android:textSize="@dimen/big_text_p5" />
  
          <Button
              android:id="@+id/list_election_item_add_btn"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
43
44
              android:layout_width="@dimen/px320dp"
              android:layout_height="@dimen/px100dp"
35544865   孙向锦   选举bug 修复
45
46
47
              android:background="@drawable/agree_selector"
              android:text="@string/select_other"
              android:textColor="@color/white"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
48
              android:textStyle="bold"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
49
              android:layout_marginRight="@dimen/px40dp"
c83dd29b   孙向锦   选举界面UI修改
50
51
52
53
              android:textSize="@dimen/big_text_p5" />
  
      </LinearLayout>
  
fac86401   孙向锦   初始化C5 Vote
54
55
56
57
      <RelativeLayout
          android:id="@+id/election_pannal_OX"
          android:layout_width="match_parent"
          android:layout_height="@dimen/button_heigh"
c83dd29b   孙向锦   选举界面UI修改
58
59
60
          android:layout_below="@+id/line_panel"
          android:visibility="gone">
  
fac86401   孙向锦   初始化C5 Vote
61
62
63
64
          <TextView
              android:id="@+id/xx"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
c83dd29b   孙向锦   选举界面UI修改
65
              android:layout_centerInParent="true" />
fac86401   孙向锦   初始化C5 Vote
66
67
68
  
          <TextView
              android:id="@+id/tv_all_ok"
fac86401   孙向锦   初始化C5 Vote
69
70
71
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_centerInParent="true"
fac86401   孙向锦   初始化C5 Vote
72
              android:layout_marginLeft="10dp"
c83dd29b   孙向锦   选举界面UI修改
73
74
75
              android:layout_toRightOf="@+id/xx"
              android:text="全赞成"
              android:textSize="@dimen/big_text_p4" />
fac86401   孙向锦   初始化C5 Vote
76
77
78
  
          <ImageButton
              android:id="@+id/btn_all_ok"
fac86401   孙向锦   初始化C5 Vote
79
              android:layout_width="wrap_content"
c83dd29b   孙向锦   选举界面UI修改
80
81
82
83
              android:layout_height="wrap_content"
              android:layout_centerInParent="true"
              android:layout_toRightOf="@+id/tv_all_ok"
              android:background="@drawable/btn_oo" />
fac86401   孙向锦   初始化C5 Vote
84
85
86
87
88
  
          <TextView
              android:id="@+id/tv_all_xx"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
fac86401   孙向锦   初始化C5 Vote
89
              android:layout_centerInParent="true"
c83dd29b   孙向锦   选举界面UI修改
90
              android:layout_marginLeft="@dimen/content_margin"
fac86401   孙向锦   初始化C5 Vote
91
92
              android:layout_toRightOf="@+id/btn_all_ok"
              android:text="全反对"
c83dd29b   孙向锦   选举界面UI修改
93
              android:textSize="@dimen/big_text_p4" />
fac86401   孙向锦   初始化C5 Vote
94
95
96
  
          <ImageButton
              android:id="@+id/btn_all_xx"
fac86401   孙向锦   初始化C5 Vote
97
              android:layout_width="wrap_content"
c83dd29b   孙向锦   选举界面UI修改
98
99
100
101
              android:layout_height="wrap_content"
              android:layout_centerInParent="true"
              android:layout_toRightOf="@+id/tv_all_xx"
              android:background="@drawable/btn_xx" />
fac86401   孙向锦   初始化C5 Vote
102
      </RelativeLayout>
c83dd29b   孙向锦   选举界面UI修改
103
  
fac86401   孙向锦   初始化C5 Vote
104
105
106
      <RelativeLayout
          android:id="@+id/election_pannal_bottom"
          android:layout_width="match_parent"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
107
          android:layout_height="@dimen/px138dp"
fac86401   孙向锦   初始化C5 Vote
108
109
110
          android:layout_alignParentBottom="true"
          android:alpha="0.9"
          android:background="@drawable/gray_alpha"
c83dd29b   孙向锦   选举界面UI修改
111
          android:visibility="visible">
35544865   孙向锦   选举bug 修复
112
  
fac86401   孙向锦   初始化C5 Vote
113
114
          <Button
              android:id="@+id/election_btn_confirm"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
115
116
              android:layout_width="@dimen/px420dp"
              android:layout_height="@dimen/px110dp"
c83dd29b   孙向锦   选举界面UI修改
117
              android:layout_centerInParent="true"
fac86401   孙向锦   初始化C5 Vote
118
              android:layout_marginRight="@dimen/content_margin"
c83dd29b   孙向锦   选举界面UI修改
119
              android:background="@drawable/oppos_selector"
fac86401   孙向锦   初始化C5 Vote
120
121
              android:text="@string/confirm_submit"
              android:textColor="@color/white"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
122
              android:textSize="@dimen/px60dp"
fac86401   孙向锦   初始化C5 Vote
123
124
125
126
              android:textStyle="bold" />
  
          <Button
              android:id="@+id/election_btn_modify"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
127
128
              android:layout_width="@dimen/px420dp"
              android:layout_height="@dimen/px110dp"
c83dd29b   孙向锦   选举界面UI修改
129
              android:layout_centerInParent="true"
fac86401   孙向锦   初始化C5 Vote
130
              android:layout_marginRight="@dimen/content_margin"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
131
              android:background="@drawable/agree_selector"
fac86401   孙向锦   初始化C5 Vote
132
133
              android:text="@string/modify"
              android:textColor="@color/white"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
134
              android:textSize="@dimen/px60dp"
c83dd29b   孙向锦   选举界面UI修改
135
136
              android:textStyle="bold"
              android:visibility="invisible" />
fac86401   孙向锦   初始化C5 Vote
137
      </RelativeLayout>
c83dd29b   孙向锦   选举界面UI修改
138
139
140
  
      <LinearLayout
          android:id="@+id/title_layout"
c83dd29b   孙向锦   选举界面UI修改
141
142
          android:layout_width="fill_parent"
          android:layout_height="60dp"
35544865   孙向锦   选举bug 修复
143
          android:layout_below="@id/election_pannal_OX"
c83dd29b   孙向锦   选举界面UI修改
144
          android:background="@color/white"
35544865   孙向锦   选举bug 修复
145
146
          android:orientation="horizontal"
          android:paddingRight="100dp">
c83dd29b   孙向锦   选举界面UI修改
147
148
149
150
151
  
          <TextView
              android:id="@+id/seq"
              android:layout_width="120dp"
              android:layout_height="wrap_content"
35544865   孙向锦   选举bug 修复
152
              android:layout_gravity="center_vertical"
c83dd29b   孙向锦   选举界面UI修改
153
              android:layout_marginLeft="150dp"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
154
              android:textStyle="bold"
c83dd29b   孙向锦   选举界面UI修改
155
              android:gravity="center"
c83dd29b   孙向锦   选举界面UI修改
156
157
158
159
160
161
162
163
164
              android:text="序号"
              android:textColor="@color/gray"
              android:textSize="@dimen/big_text_p6" />
  
          <TextView
              android:id="@+id/list_election_item_name"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:layout_gravity="center_vertical"
c83dd29b   孙向锦   选举界面UI修改
165
              android:layout_marginLeft="40dp"
35544865   孙向锦   选举bug 修复
166
              android:layout_weight="1"
c83dd29b   孙向锦   选举界面UI修改
167
              android:gravity="left|center_vertical"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
168
              android:textStyle="bold"
ba547d80   孙向锦   会议不存在UI更新
169
              android:text="侯选人"
c83dd29b   孙向锦   选举界面UI修改
170
171
172
              android:textColor="@color/red"
              android:textSize="@dimen/big_text_p6" />
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
173
          <LinearLayout
c83dd29b   孙向锦   选举界面UI修改
174
              android:layout_width="wrap_content"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
175
176
177
178
179
180
181
182
              android:layout_height="match_parent"
              android:orientation="horizontal"
              android:gravity="center|center_vertical">
              <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center_vertical"
                  android:text="@string/agree"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
183
                  android:textStyle="bold"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
184
185
                  android:textColor="@color/red"
                  android:textSize="@dimen/big_text_p6" />
c83dd29b   孙向锦   选举界面UI修改
186
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
187
188
189
190
191
192
              <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center_vertical"
                  android:layout_marginLeft="@dimen/button_to_content"
                  android:text="@string/oppose"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
193
                  android:textStyle="bold"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
194
195
                  android:textColor="@color/red"
                  android:textSize="@dimen/big_text_p6" />
c83dd29b   孙向锦   选举界面UI修改
196
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
197
198
199
200
201
202
              <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center_vertical"
                  android:layout_marginLeft="@dimen/button_to_content"
                  android:text="@string/delete"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
203
                  android:textStyle="bold"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
204
205
206
207
208
                  android:textColor="@color/red"
                  android:textSize="@dimen/big_text_p6"
                  android:visibility="gone" />
  
          </LinearLayout>
c83dd29b   孙向锦   选举界面UI修改
209
210
211
212
213
  
      </LinearLayout>
  
      <View
          android:id="@+id/line"
c83dd29b   孙向锦   选举界面UI修改
214
215
          android:layout_width="match_parent"
          android:layout_height="2dp"
35544865   孙向锦   选举bug 修复
216
217
218
          android:layout_below="@id/title_layout"
          android:background="@color/votebakground" />
  
fac86401   孙向锦   初始化C5 Vote
219
220
221
222
223
      <ListView
          android:id="@+id/election_listview"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:layout_above="@id/election_pannal_bottom"
c83dd29b   孙向锦   选举界面UI修改
224
          android:layout_below="@id/line"
fac86401   孙向锦   初始化C5 Vote
225
          android:layout_marginBottom="2dp"
fac86401   孙向锦   初始化C5 Vote
226
          android:divider="@color/votebakground"
c83dd29b   孙向锦   选举界面UI修改
227
228
229
230
231
232
233
234
235
236
237
          android:dividerHeight="2dp"></ListView>
  
      <LinearLayout
          android:layout_width="40dp"
          android:layout_height="150dp"
          android:layout_alignParentRight="true"
          android:layout_centerVertical="true"
          android:layout_marginBottom="50dp"
          android:layout_marginRight="20dp"
          android:layout_marginTop="50dp"
          android:background="@drawable/right_control"
a5a485e9   wutaian   修改提交,弃权,反对按钮样式,添加颜色
238
239
          android:orientation="vertical"
          android:visibility="gone">
c83dd29b   孙向锦   选举界面UI修改
240
241
242
243
244
  
          <ImageView
              android:id="@+id/election_pageup"
              android:layout_width="wrap_content"
              android:layout_height="0dp"
c83dd29b   孙向锦   选举界面UI修改
245
              android:layout_weight="1"
35544865   孙向锦   选举bug 修复
246
              android:padding="10dp"
c83dd29b   孙向锦   选举界面UI修改
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
              android:src="@drawable/page_up" />
  
          <ImageView
              android:id="@+id/election_pagedown"
              android:layout_width="wrap_content"
              android:layout_height="0dp"
              android:layout_weight="1"
              android:padding="10dp"
              android:src="@drawable/page_down" />
  
          <ImageView
              android:id="@+id/election_pagelast"
              android:layout_width="wrap_content"
              android:layout_height="0dp"
              android:layout_weight="1"
              android:padding="10dp"
              android:src="@drawable/page_frist" />
  
      </LinearLayout>
  
35544865   孙向锦   选举bug 修复
267
      <RelativeLayout
fac86401   孙向锦   初始化C5 Vote
268
269
270
          android:id="@+id/election_add_other_panel"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
35544865   孙向锦   选举bug 修复
271
          android:layout_below="@id/line_panel"
35544865   孙向锦   选举bug 修复
272
          android:background="#E5E5E5">
fac86401   孙向锦   初始化C5 Vote
273
  
fac86401   孙向锦   初始化C5 Vote
274
          <LinearLayout
35544865   孙向锦   选举bug 修复
275
              android:id="@+id/name_layout"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
276
277
278
279
280
281
282
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_marginLeft="@dimen/px20dp"
              android:layout_above="@+id/bottom_linear"
              android:layout_margin="@dimen/px20dp"
              android:gravity="bottom|center"
              android:orientation="vertical">
fac86401   孙向锦   初始化C5 Vote
283
  
35544865   孙向锦   选举bug 修复
284
285
              <TextView
                  android:layout_width="wrap_content"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
286
                  android:layout_height="@dimen/px120dp"
35544865   孙向锦   选举bug 修复
287
                  android:text="@string/input_other"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
288
                  android:layout_marginRight="@dimen/px90dp"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
289
                  android:textStyle="bold"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
290
291
                  android:textColor="@color/black"
                  android:textSize="@dimen/px60dp" />
35544865   孙向锦   选举bug 修复
292
293
294
  
              <com.sunvote.xpadapp.base.ZanyEditText
                  android:id="@+id/election_add_edit"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
295
296
                  android:layout_width="@dimen/px787dp"
                  android:layout_height="@dimen/px120dp"
35544865   孙向锦   选举bug 修复
297
298
299
300
                  android:layout_marginLeft="20dp"
                  android:background="@color/white"
                  android:imeOptions="flagNoExtractUi"
                  android:lines="1"
ef534270   wutaian   修改提交中颜色
301
302
303
                  android:maxLines="1"
                  android:inputType="text"
                  android:singleLine="true"
35544865   孙向锦   选举bug 修复
304
                  android:textSize="@dimen/big_text_p4" />
fac86401   孙向锦   初始化C5 Vote
305
306
307
308
          </LinearLayout>
  
          <!--按钮-->
          <LinearLayout
35544865   孙向锦   选举bug 修复
309
310
311
312
313
              android:id="@+id/bottom_linear"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignParentBottom="true"
              android:layout_centerHorizontal="true"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
314
315
              android:layout_marginBottom="@dimen/px300dp"
              android:layout_marginTop="@dimen/px30dp"
fac86401   孙向锦   初始化C5 Vote
316
317
318
              android:orientation="horizontal">
  
              <Button
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
319
320
321
                  android:id="@+id/election_add_edit_btn_ok"
                  android:layout_width="@dimen/px360dp"
                  android:layout_height="@dimen/px120dp"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
322
                  android:layout_marginLeft="@dimen/px80dp"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
323
324
                  android:background="@drawable/btn_agree"
                  android:text="@string/ok"
fac86401   孙向锦   初始化C5 Vote
325
326
327
328
329
                  android:textColor="@color/white"
                  android:textSize="@dimen/big_text_p4"
                  android:textStyle="bold" />
  
              <Button
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
330
331
332
333
                  android:id="@+id/election_add_edit_btn_cancel"
                  android:layout_width="@dimen/px360dp"
                  android:layout_height="@dimen/px120dp"
                  android:background="@drawable/oppos_selector"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
334
                  android:layout_marginLeft="@dimen/px80dp"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
335
                  android:text="@string/cancel"
fac86401   孙向锦   初始化C5 Vote
336
337
338
339
340
                  android:textColor="@color/white"
                  android:textSize="@dimen/big_text_p4"
                  android:textStyle="bold" />
          </LinearLayout>
  
35544865   孙向锦   选举bug 修复
341
342
343
344
          <RelativeLayout
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_below="@id/name_layout"
35544865   孙向锦   选举bug 修复
345
346
347
              android:layout_margin="20dp"
              android:background="@color/white"
              android:gravity="center"
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
348
              android:visibility="invisible"
35544865   孙向锦   选举bug 修复
349
350
351
352
353
354
355
356
357
358
              android:orientation="vertical">
  
              <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_centerInParent="true"
                  android:text="另选代表姓名(手写)"
                  android:textSize="@dimen/big_text_p5"
                  android:textColor="@color/darkgrey"/>
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
359
360
361
362
              <com.sunvote.xpadapp.base.PaletteView
                  android:id="@+id/draw_view"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent" />
35544865   孙向锦   选举bug 修复
363
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
364
365
366
367
368
369
370
371
372
              <ImageView
                  android:id="@+id/clear_img"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_alignParentRight="true"
                  android:layout_alignParentTop="true"
                  android:layout_marginTop="20dp"
                  android:layout_marginRight="20dp"
                  android:src="@drawable/ic_clear" />
35544865   孙向锦   选举bug 修复
373
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
374
          </RelativeLayout>
35544865   孙向锦   选举bug 修复
375
376
  
      </RelativeLayout>
c83dd29b   孙向锦   选举界面UI修改
377
  
691d9f67   wutaian   修改投票选举UI,相关UI的业务逻辑
378
  
fac86401   孙向锦   初始化C5 Vote
379
380
      <RelativeLayout
          android:id="@+id/singlevote_confirm_panel"
9eecf3b7   wutaian   修改民事,选举提示
381
382
383
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:background="#bb000000"
fac86401   孙向锦   初始化C5 Vote
384
385
386
387
388
389
390
          android:visibility="gone">
  
          <TextView
              android:id="@+id/singlevote_confirm_textview"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_centerHorizontal="true"
fac86401   孙向锦   初始化C5 Vote
391
392
              android:layout_marginLeft="@dimen/content_margin"
              android:layout_marginRight="@dimen/content_margin"
9eecf3b7   wutaian   修改民事,选举提示
393
              android:layout_marginTop="@dimen/px352dp"
c83dd29b   孙向锦   选举界面UI修改
394
395
              android:text="@string/cant_modify_confirm"
              android:textColor="@color/white"
9eecf3b7   wutaian   修改民事,选举提示
396
397
              android:textSize="@dimen/px70dp"
              android:textStyle="bold" />
fac86401   孙向锦   初始化C5 Vote
398
399
400
  
          <Button
              android:id="@+id/singlevote_btn_confirm_cancel"
9eecf3b7   wutaian   修改民事,选举提示
401
402
              android:layout_width="@dimen/px360dp"
              android:layout_height="@dimen/px110dp"
fac86401   孙向锦   初始化C5 Vote
403
404
              android:layout_alignParentLeft="true"
              android:layout_below="@id/singlevote_confirm_textview"
e129be23   孙向锦   添加一些修改选项
405
              android:layout_marginLeft="200dp"
fac86401   孙向锦   初始化C5 Vote
406
              android:layout_marginTop="@dimen/button_to_content"
9eecf3b7   wutaian   修改民事,选举提示
407
              android:background="#FBBF16"
fac86401   孙向锦   初始化C5 Vote
408
409
              android:text="@string/cancel"
              android:textColor="@color/white"
9eecf3b7   wutaian   修改民事,选举提示
410
              android:textSize="@dimen/px60dp"
fac86401   孙向锦   初始化C5 Vote
411
412
413
414
              android:textStyle="bold" />
  
          <Button
              android:id="@+id/singlevote_btn_confirm_ok"
9eecf3b7   wutaian   修改民事,选举提示
415
416
              android:layout_width="@dimen/px360dp"
              android:layout_height="@dimen/px110dp"
fac86401   孙向锦   初始化C5 Vote
417
418
              android:layout_alignParentRight="true"
              android:layout_below="@id/singlevote_confirm_textview"
e129be23   孙向锦   添加一些修改选项
419
              android:layout_marginRight="200dp"
fac86401   孙向锦   初始化C5 Vote
420
421
422
423
              android:layout_marginTop="@dimen/button_to_content"
              android:background="@drawable/btn_agree"
              android:text="@string/ok"
              android:textColor="@color/white"
9eecf3b7   wutaian   修改民事,选举提示
424
              android:textSize="@dimen/px60dp"
fac86401   孙向锦   初始化C5 Vote
425
              android:textStyle="bold" />
9eecf3b7   wutaian   修改民事,选举提示
426
  
fac86401   孙向锦   初始化C5 Vote
427
      </RelativeLayout>
c83dd29b   孙向锦   选举界面UI修改
428
  
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
429
430
431
432
433
434
435
436
437
438
439
440
      <FrameLayout
          android:id="@+id/result_layout"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:layout_above="@+id/election_pannal_bottom"
          android:visibility="gone"
          android:gravity="center">
  
          <LinearLayout
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:background="@color/white"
f9cc72e1   wutaian   修改民事结果UI
441
              android:alpha="0.5"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
              android:orientation="horizontal" />
  
          <TextView
              android:id="@+id/singlevote_tv_result"
              android:layout_width="@dimen/px625dp"
              android:layout_height="@dimen/px217dp"
              android:layout_marginTop="@dimen/px100dp"
              android:background="@drawable/voted"
              android:layout_gravity="center"
              android:textSize="@dimen/big_text_p2"
              android:textStyle="bold"/>
  
          <TextView
              android:id="@+id/submiting_tv"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_marginTop="@dimen/px100dp"
              android:layout_gravity="center"
ef534270   wutaian   修改提交中颜色
460
              android:textColor="@color/red2"
e3db4ced   wutaian   修改投票,民事表决,新增民事表决结果
461
462
463
464
465
              android:text="@string/submiting"
              android:textSize="@dimen/px140dp"
              android:visibility="gone"
              android:textStyle="bold"/>
      </FrameLayout>
fac86401   孙向锦   初始化C5 Vote
466
  </RelativeLayout>