Blame view

C5/app/src/main/res/layout/fragment_result_vote.xml 9.79 KB
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
          android:layout_alignParentTop="true"
          android:layout_centerHorizontal="true"
49b6752a   孙向锦   批次表决
13
          android:layout_marginTop="@dimen/px60dp"
4c3de86c   孙向锦   UI改版第一版
14
          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"
49b6752a   孙向锦   批次表决
30
              android:layout_marginTop="@dimen/px40dp"
4c3de86c   孙向锦   UI改版第一版
31
32
              android:gravity="center"
              android:text="通过"
74a0ade9   孙向锦   添加长度定义文件
33
34
35
36
37
38
              android:textColor="@color/white"
              android:textSize="@dimen/px140dp"
              android:textStyle="bold" />
      </LinearLayout>
  
      <LinearLayout
49b6752a   孙向锦   批次表决
39
40
          android:id="@+id/yingdao_layout"
          android:layout_width="@dimen/px675dp"
74a0ade9   孙向锦   添加长度定义文件
41
          android:layout_height="wrap_content"
74a0ade9   孙向锦   添加长度定义文件
42
          android:layout_below="@id/result_layout"
49b6752a   孙向锦   批次表决
43
44
          android:layout_centerHorizontal="true"
          android:layout_marginTop="@dimen/px40dp"
74a0ade9   孙向锦   添加长度定义文件
45
46
47
48
49
50
          android:orientation="horizontal">
  
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_weight="1"
74a0ade9   孙向锦   添加长度定义文件
51
              android:text="@string/yindao1"
49b6752a   孙向锦   批次表决
52
53
              android:textColor="@color/white"
              android:textSize="@dimen/px60dp"
74a0ade9   孙向锦   添加长度定义文件
54
55
56
57
58
59
              android:textStyle="bold" />
  
          <TextView
              android:id="@+id/yingdaoresult"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
74a0ade9   孙向锦   添加长度定义文件
60
              android:layout_weight="1"
74a0ade9   孙向锦   添加长度定义文件
61
62
              android:text="150"
              android:textColor="@color/white"
49b6752a   孙向锦   批次表决
63
              android:textSize="@dimen/px60dp" />
74a0ade9   孙向锦   添加长度定义文件
64
65
66
67
  
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
74a0ade9   孙向锦   添加长度定义文件
68
              android:layout_weight="1"
74a0ade9   孙向锦   添加长度定义文件
69
              android:text="@string/shidao1"
49b6752a   孙向锦   批次表决
70
71
72
              android:textColor="@color/white"
              android:textSize="@dimen/px60dp"
              android:gravity="center_vertical|right"
4c3de86c   孙向锦   UI改版第一版
73
              android:textStyle="bold" />
74a0ade9   孙向锦   添加长度定义文件
74
75
76
77
78
  
          <TextView
              android:id="@+id/shidaoresult"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
74a0ade9   孙向锦   添加长度定义文件
79
              android:layout_weight="1"
74a0ade9   孙向锦   添加长度定义文件
80
              android:text="150"
49b6752a   孙向锦   批次表决
81
              android:gravity="center_vertical|right"
74a0ade9   孙向锦   添加长度定义文件
82
              android:textColor="@color/white"
49b6752a   孙向锦   批次表决
83
              android:textSize="@dimen/px60dp" />
74a0ade9   孙向锦   添加长度定义文件
84
  
4c3de86c   孙向锦   UI改版第一版
85
      </LinearLayout>
fac86401   孙向锦   初始化C5 Vote
86
  
49b6752a   孙向锦   批次表决
87
88
      <View
          android:id="@+id/line0"
4c3de86c   孙向锦   UI改版第一版
89
          android:layout_width="match_parent"
49b6752a   孙向锦   批次表决
90
91
92
93
          android:layout_height="@dimen/px3dp"
          android:layout_below="@id/yingdao_layout"
          android:layout_marginTop="@dimen/px40dp"
          android:background="#5386CB" />
fac86401   孙向锦   初始化C5 Vote
94
  
49b6752a   孙向锦   批次表决
95
96
97
98
99
100
101
      <RelativeLayout
          android:id="@+id/data_title_layout1"
          android:layout_width="match_parent"
          android:layout_height="@dimen/px120dp"
          android:background="#084aa3"
          android:visibility="gone"
          android:layout_below="@id/line0">
4c3de86c   孙向锦   UI改版第一版
102
          <LinearLayout
49b6752a   孙向锦   批次表决
103
104
              android:layout_width="@dimen/px675dp"
              android:layout_height="@dimen/px120dp"
4c3de86c   孙向锦   UI改版第一版
105
              android:layout_centerHorizontal="true"
49b6752a   孙向锦   批次表决
106
              android:layout_gravity="center_vertical"
4c3de86c   孙向锦   UI改版第一版
107
              android:orientation="horizontal">
4c3de86c   孙向锦   UI改版第一版
108
              <TextView
49b6752a   孙向锦   批次表决
109
                  android:id="@+id/data_title_layout1_text1"
4c3de86c   孙向锦   UI改版第一版
110
                  android:layout_width="wrap_content"
49b6752a   孙向锦   批次表决
111
                  android:layout_height="match_parent"
4c3de86c   孙向锦   UI改版第一版
112
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
113
114
115
116
117
                  android:text="@string/manyi"
                  android:gravity="center_vertical"
                  android:textColor="@color/white"
                  android:textSize="@dimen/px60dp"
                  android:textStyle="bold" />
4c3de86c   孙向锦   UI改版第一版
118
119
  
              <TextView
49b6752a   孙向锦   批次表决
120
                  android:id="@+id/data_title_layout1_text2"
4c3de86c   孙向锦   UI改版第一版
121
                  android:layout_width="wrap_content"
49b6752a   孙向锦   批次表决
122
123
                  android:layout_height="match_parent"
                  android:text="150"
4c3de86c   孙向锦   UI改版第一版
124
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
125
126
127
                  android:gravity="center_vertical|right"
                  android:textColor="@color/white"
                  android:textSize="@dimen/px60dp" />
4c3de86c   孙向锦   UI改版第一版
128
  
4c3de86c   孙向锦   UI改版第一版
129
          </LinearLayout>
fac86401   孙向锦   初始化C5 Vote
130
      </RelativeLayout>
4c3de86c   孙向锦   UI改版第一版
131
132
  
      <View
49b6752a   孙向锦   批次表决
133
          android:id="@+id/line1"
4c3de86c   孙向锦   UI改版第一版
134
          android:layout_width="match_parent"
49b6752a   孙向锦   批次表决
135
136
137
          android:layout_height="@dimen/px3dp"
          android:layout_below="@id/data_title_layout1"
          android:background="#5386CB" />
fac86401   孙向锦   初始化C5 Vote
138
  
4c3de86c   孙向锦   UI改版第一版
139
      <RelativeLayout
49b6752a   孙向锦   批次表决
140
          android:id="@+id/data_title_layout2"
4c3de86c   孙向锦   UI改版第一版
141
          android:layout_width="match_parent"
49b6752a   孙向锦   批次表决
142
143
144
          android:layout_height="@dimen/px120dp"
          android:visibility="gone"
          android:layout_below="@id/line1">
4c3de86c   孙向锦   UI改版第一版
145
          <LinearLayout
49b6752a   孙向锦   批次表决
146
147
              android:layout_width="@dimen/px675dp"
              android:layout_height="@dimen/px120dp"
4c3de86c   孙向锦   UI改版第一版
148
149
              android:layout_centerHorizontal="true"
              android:orientation="horizontal">
4c3de86c   孙向锦   UI改版第一版
150
              <TextView
49b6752a   孙向锦   批次表决
151
                  android:id="@+id/data_title_layout2_text1"
4c3de86c   孙向锦   UI改版第一版
152
                  android:layout_width="wrap_content"
49b6752a   孙向锦   批次表决
153
                  android:layout_height="match_parent"
4c3de86c   孙向锦   UI改版第一版
154
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
155
156
                  android:gravity="center_vertical"
                  android:text="@string/manyi"
4c3de86c   孙向锦   UI改版第一版
157
                  android:textColor="@color/white"
49b6752a   孙向锦   批次表决
158
                  android:textSize="@dimen/px60dp"
4c3de86c   孙向锦   UI改版第一版
159
                  android:textStyle="bold" />
fac86401   孙向锦   初始化C5 Vote
160
  
4c3de86c   孙向锦   UI改版第一版
161
              <TextView
49b6752a   孙向锦   批次表决
162
                  android:id="@+id/data_title_layout2_text2"
4c3de86c   孙向锦   UI改版第一版
163
                  android:layout_width="wrap_content"
49b6752a   孙向锦   批次表决
164
165
                  android:layout_height="match_parent"
                  android:gravity="center_vertical|right"
4c3de86c   孙向锦   UI改版第一版
166
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
167
                  android:text="150"
4c3de86c   孙向锦   UI改版第一版
168
                  android:textColor="@color/white"
49b6752a   孙向锦   批次表决
169
                  android:textSize="@dimen/px60dp" />
4c3de86c   孙向锦   UI改版第一版
170
  
4c3de86c   孙向锦   UI改版第一版
171
          </LinearLayout>
fac86401   孙向锦   初始化C5 Vote
172
      </RelativeLayout>
4c3de86c   孙向锦   UI改版第一版
173
174
175
176
  
      <View
          android:id="@+id/line2"
          android:layout_width="match_parent"
49b6752a   孙向锦   批次表决
177
178
179
          android:layout_height="@dimen/px3dp"
          android:layout_below="@id/data_title_layout2"
          android:background="#5386CB" />
4c3de86c   孙向锦   UI改版第一版
180
  
fac86401   孙向锦   初始化C5 Vote
181
      <RelativeLayout
49b6752a   孙向锦   批次表决
182
          android:id="@+id/data_title_layout3"
4c3de86c   孙向锦   UI改版第一版
183
          android:layout_width="match_parent"
49b6752a   孙向锦   批次表决
184
185
186
          android:layout_height="@dimen/px120dp"
          android:background="#084aa3"
          android:visibility="gone"
4c3de86c   孙向锦   UI改版第一版
187
          android:layout_below="@id/line2">
4c3de86c   孙向锦   UI改版第一版
188
          <LinearLayout
49b6752a   孙向锦   批次表决
189
190
              android:layout_width="@dimen/px675dp"
              android:layout_height="@dimen/px120dp"
4c3de86c   孙向锦   UI改版第一版
191
192
              android:layout_centerHorizontal="true"
              android:orientation="horizontal">
49b6752a   孙向锦   批次表决
193
194
195
196
197
198
199
200
201
202
              <TextView
                  android:id="@+id/data_title_layout3_text1"
                  android:layout_width="wrap_content"
                  android:layout_height="match_parent"
                  android:layout_weight="1"
                  android:gravity="center_vertical"
                  android:text="@string/manyi"
                  android:textColor="@color/white"
                  android:textSize="@dimen/px60dp"
                  android:textStyle="bold" />
4c3de86c   孙向锦   UI改版第一版
203
204
  
              <TextView
49b6752a   孙向锦   批次表决
205
                  android:id="@+id/data_title_layout3_text2"
4c3de86c   孙向锦   UI改版第一版
206
207
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
49b6752a   孙向锦   批次表决
208
                  android:gravity="center_vertical|right"
4c3de86c   孙向锦   UI改版第一版
209
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
210
                  android:text="150"
4c3de86c   孙向锦   UI改版第一版
211
                  android:textColor="@color/white"
49b6752a   孙向锦   批次表决
212
213
214
                  android:textSize="@dimen/px60dp" />
          </LinearLayout>
      </RelativeLayout>
4c3de86c   孙向锦   UI改版第一版
215
  
49b6752a   孙向锦   批次表决
216
217
218
219
220
221
      <View
          android:id="@+id/line3"
          android:layout_width="match_parent"
          android:layout_height="@dimen/px3dp"
          android:layout_below="@id/data_title_layout3"
          android:background="#5386CB" />
4c3de86c   孙向锦   UI改版第一版
222
  
49b6752a   孙向锦   批次表决
223
224
225
226
227
228
229
230
231
232
233
      <RelativeLayout
          android:id="@+id/data_title_layout4"
          android:layout_width="match_parent"
          android:layout_height="@dimen/px120dp"
          android:visibility="gone"
          android:layout_below="@id/line3">
          <LinearLayout
              android:layout_width="@dimen/px675dp"
              android:layout_height="@dimen/px120dp"
              android:layout_centerHorizontal="true"
              android:orientation="horizontal">
4c3de86c   孙向锦   UI改版第一版
234
              <TextView
49b6752a   孙向锦   批次表决
235
                  android:id="@+id/data_title_layout4_text1"
4c3de86c   孙向锦   UI改版第一版
236
                  android:layout_width="wrap_content"
49b6752a   孙向锦   批次表决
237
                  android:layout_height="match_parent"
4c3de86c   孙向锦   UI改版第一版
238
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
239
240
                  android:gravity="center_vertical"
                  android:text="@string/manyi"
4c3de86c   孙向锦   UI改版第一版
241
                  android:textColor="@color/white"
49b6752a   孙向锦   批次表决
242
                  android:textSize="@dimen/px60dp"
4c3de86c   孙向锦   UI改版第一版
243
244
245
                  android:textStyle="bold" />
  
              <TextView
49b6752a   孙向锦   批次表决
246
                  android:id="@+id/data_title_layout4_text2"
4c3de86c   孙向锦   UI改版第一版
247
                  android:layout_width="wrap_content"
49b6752a   孙向锦   批次表决
248
249
                  android:layout_height="match_parent"
                  android:gravity="center_vertical|right"
4c3de86c   孙向锦   UI改版第一版
250
                  android:layout_weight="1"
49b6752a   孙向锦   批次表决
251
                  android:text="150"
4c3de86c   孙向锦   UI改版第一版
252
                  android:textColor="@color/white"
49b6752a   孙向锦   批次表决
253
                  android:textSize="@dimen/px60dp" />
4c3de86c   孙向锦   UI改版第一版
254
  
49b6752a   孙向锦   批次表决
255
          </LinearLayout>
fac86401   孙向锦   初始化C5 Vote
256
      </RelativeLayout>
4c3de86c   孙向锦   UI改版第一版
257
258
  
      <View
49b6752a   孙向锦   批次表决
259
          android:id="@+id/line4"
4c3de86c   孙向锦   UI改版第一版
260
          android:layout_width="match_parent"
49b6752a   孙向锦   批次表决
261
262
263
          android:layout_height="@dimen/px3dp"
          android:layout_below="@id/data_title_layout4"
          android:background="#5386CB" />
fac86401   孙向锦   初始化C5 Vote
264
  </RelativeLayout>