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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
 
    <android.support.v7.widget.CardView
        style="@style/bigCardView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardCornerRadius="@dimen/dimen8">
 
        <RelativeLayout
            android:id="@+id/rl_container1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="@dimen/dimen6"
            android:visibility="visible">
 
            <LinearLayout
                android:id="@+id/ll_container1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
 
                <ImageView
                    android:id="@+id/iv_tody_task"
                    android:layout_width="@dimen/title_icon_size"
                    android:layout_height="@dimen/title_icon_size"
                    android:background="@drawable/ic_supervise_info" />
 
                <TextView
                    android:id="@+id/tv_today_task"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical"
                    android:layout_marginStart="10dp"
                    android:gravity="center"
                    android:text="@string/today_task"
                    android:textColor="@color/black"
                    android:textSize="12sp" />
            </LinearLayout>
 
            <RelativeLayout
                android:id="@+id/rl_today_task"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/ll_container1">
 
                <android.support.v7.widget.RecyclerView
                    android:id="@+id/rv_today_task"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:nestedScrollingEnabled="false"
                    tools:ignore="UnusedAttribute">
 
                </android.support.v7.widget.RecyclerView>
 
                <TextView
                    android:id="@+id/tv_no_task"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerHorizontal="true"
                    android:layout_centerVertical="true"
                    android:text="今日无任务" />
            </RelativeLayout>
 
            <TextView
                android:id="@+id/look_more"
                android:layout_width="match_parent"
                android:layout_height="30dp"
                android:layout_below="@id/rl_today_task"
                android:layout_marginTop="@dimen/dimen6"
                android:background="#f7f7f7"
                android:clickable="true"
                android:focusable="true"
                android:foreground="?android:attr/selectableItemBackground"
                android:gravity="center"
                android:text="无更多任务"
                android:textSize="12sp"
                android:visibility="visible"
                tools:ignore="UnusedAttribute" />
 
        </RelativeLayout>
    </android.support.v7.widget.CardView>
 
    <!--<android.support.v7.widget.CardView-->
        <!--style="@style/bigCardView"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="wrap_content"-->
        <!--app:cardCornerRadius="@dimen/dimen8">-->
 
        <!--<RelativeLayout-->
            <!--android:id="@+id/rl_container4"-->
            <!--android:layout_width="match_parent"-->
            <!--android:layout_height="wrap_content"-->
            <!--android:orientation="vertical"-->
            <!--android:padding="@dimen/dimen6">-->
 
            <!--<RelativeLayout-->
                <!--android:id="@+id/rl_evaluate"-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:clickable="true"-->
                <!--android:focusable="true"-->
                <!--android:foreground="?android:attr/selectableItemBackground"-->
                <!--android:orientation="horizontal">-->
 
                <!--<ImageView-->
                    <!--android:id="@+id/iv_evaluate"-->
                    <!--android:layout_width="26dp"-->
                    <!--android:layout_height="26dp"-->
                    <!--android:background="@drawable/ic_standard" />-->
 
                <!--<TextView-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_centerVertical="true"-->
                    <!--android:layout_gravity="center_vertical"-->
                    <!--android:layout_marginStart="10dp"-->
                    <!--android:layout_toEndOf="@id/iv_evaluate"-->
                    <!--android:title="@string/standard"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp" />-->
 
                <!--<LinearLayout-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_alignParentEnd="true"-->
                    <!--android:layout_centerVertical="true">-->
 
                    <!--<TextView-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="上月("-->
                        <!--android:textSize="@dimen/textSize_notes" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_last_month"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="2018-12"-->
                        <!--android:textSize="@dimen/textSize_notes" />-->
 
                    <!--<TextView-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title=")/本月("-->
                        <!--android:textSize="@dimen/textSize_notes" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_this_month"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="2019-01"-->
                        <!--android:textSize="@dimen/textSize_notes" />-->
 
                    <!--<TextView-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_gravity="end"-->
                        <!--android:title=")"-->
                        <!--android:textSize="@dimen/textSize_notes" />-->
                <!--</LinearLayout>-->
 
            <!--</RelativeLayout>-->
 
            <!--<LinearLayout-->
                <!--android:id="@+id/ll_evaluate_percent"-->
                <!--android:layout_width="wrap_content"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:layout_below="@id/rl_evaluate"-->
                <!--android:layout_centerHorizontal="true"-->
                <!--android:orientation="horizontal">-->
                <!--<TextView-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:title="规范率:"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp"/>-->
 
                <!--<TextView-->
                    <!--android:id="@+id/text_standard_per_1"-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:title="&#45;&#45;%"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp"/>-->
 
                <!--<TextView-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:title="/"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp"/>-->
 
                <!--<TextView-->
                    <!--android:id="@+id/text_standard_per_2"-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:title="&#45;&#45;%"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp"/>-->
 
            <!--</LinearLayout>-->
 
            <!--<LinearLayout-->
                <!--android:id="@+id/ll_evaluate"-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:layout_below="@id/ll_evaluate_percent"-->
                <!--android:orientation="vertical">-->
 
                <!--<LinearLayout-->
                    <!--android:layout_width="match_parent"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:visibility="gone">-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1.5"-->
                        <!--android:gravity="center"-->
                        <!--android:title="规范类型"-->
                        <!--android:textColor="@color/black" />-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1"-->
                        <!--android:gravity="center"-->
                        <!--android:title="场景数"-->
                        <!--android:textColor="@color/black" />-->
 
                <!--</LinearLayout>-->
 
                <!--<android.support.constraint.ConstraintLayout-->
                    <!--android:layout_width="match_parent"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:gravity="center_vertical"-->
                    <!--android:layout_marginTop="@dimen/dimen4">-->
 
                    <!--<ImageView-->
                        <!--android:id="@+id/image_standard_1"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="16dp"-->
                        <!--android:src="@drawable/icon_standard_1"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintLeft_toLeftOf="parent"-->
                        <!--app:layout_constraintRight_toLeftOf="@id/text_standard_1_1"-->
                        <!--app:layout_constraintHorizontal_weight="1"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_1_1"-->
                        <!--app:layout_constraintBottom_toBottomOf="@id/text_standard_1_1"/>-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_1_1"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="规范"-->
                        <!--android:textColor="@color/black"-->
                        <!--style="@style/singleLine"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="2"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_1"-->
                        <!--app:layout_constraintRight_toLeftOf="@id/image_standard_2" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_1"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_1"-->
                        <!--app:layout_constraintTop_toBottomOf="@id/text_standard_1_1" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/textView_1"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="/"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/text_standard_1"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_1" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_1_2"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/textView_1"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_1" />-->
 
                    <!--&lt;!&ndash;</LinearLayout>&ndash;&gt;-->
                    <!--&lt;!&ndash;<LinearLayout&ndash;&gt;-->
                    <!--&lt;!&ndash;android:layout_width="match_parent"&ndash;&gt;-->
                    <!--&lt;!&ndash;android:layout_height="wrap_content"&ndash;&gt;-->
                    <!--&lt;!&ndash;android:gravity="center_vertical">&ndash;&gt;-->
 
                    <!--<ImageView-->
                        <!--android:id="@+id/image_standard_2"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="16dp"-->
                        <!--android:src="@drawable/icon_standard_2"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="1"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/text_standard_1_1"-->
                        <!--app:layout_constraintRight_toLeftOf="@id/text_standard_2_1"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_2_1"-->
                        <!--app:layout_constraintBottom_toBottomOf="@id/text_standard_2_1"/>-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_2_1"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="基本规范"-->
                        <!--style="@style/singleLine"-->
                        <!--android:textColor="@color/black"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="2"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_2"-->
                        <!--app:layout_constraintRight_toRightOf="parent" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_2"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:gravity="center"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_2"-->
                        <!--app:layout_constraintTop_toBottomOf="@id/text_standard_2_1" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/textView_2"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="/"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/text_standard_2"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_2" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_2_2"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/textView_2"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_2" />-->
 
                <!--</android.support.constraint.ConstraintLayout>-->
 
                <!--<android.support.constraint.ConstraintLayout-->
                    <!--android:layout_width="match_parent"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:gravity="center_vertical">-->
 
                    <!--<ImageView-->
                        <!--android:id="@+id/image_standard_3"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="16dp"-->
                        <!--android:src="@drawable/icon_standard_3"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="1"-->
                        <!--app:layout_constraintLeft_toLeftOf="parent"-->
                        <!--app:layout_constraintRight_toLeftOf="@id/text_standard_3_1"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_3_1"-->
                        <!--app:layout_constraintBottom_toBottomOf="@id/text_standard_3_1"/>-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_3_1"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="不规范"-->
                        <!--style="@style/singleLine"-->
                        <!--android:textColor="@color/black"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="2"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_3"-->
                        <!--app:layout_constraintRight_toLeftOf="@id/image_standard_4" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_3"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_3"-->
                        <!--app:layout_constraintTop_toBottomOf="@id/text_standard_3_1" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/textView_3"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="/"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/text_standard_3"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_3" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_3_2"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/textView_3"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_3" />-->
 
                    <!--<ImageView-->
                        <!--android:id="@+id/image_standard_4"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="16dp"-->
                        <!--android:src="@drawable/icon_standard_4"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="1"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/text_standard_3_1"-->
                        <!--app:layout_constraintRight_toLeftOf="@id/text_standard_4_1"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_4_1"-->
                        <!--app:layout_constraintBottom_toBottomOf="@id/text_standard_4_1"/>-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_4_1"-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="严重不规范"-->
                        <!--android:textColor="@color/black"-->
                        <!--style="@style/singleLine"-->
                        <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                        <!--app:layout_constraintHorizontal_weight="2"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_4"-->
                        <!--app:layout_constraintRight_toRightOf="parent" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_4"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/image_standard_4"-->
                        <!--app:layout_constraintTop_toBottomOf="@id/text_standard_4_1" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/textView_4"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="/"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/text_standard_4"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_4" />-->
 
                    <!--<TextView-->
                        <!--android:id="@+id/text_standard_4_2"-->
                        <!--android:layout_width="wrap_content"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:title="&#45;&#45;"-->
                        <!--app:layout_constraintLeft_toRightOf="@id/textView_4"-->
                        <!--app:layout_constraintTop_toTopOf="@id/text_standard_4" />-->
 
                <!--</android.support.constraint.ConstraintLayout>-->
            <!--</LinearLayout>-->
        <!--</RelativeLayout>-->
    <!--</android.support.v7.widget.CardView>-->
 
    <!--<android.support.v7.widget.CardView-->
        <!--style="@style/bigCardView"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:layout_marginTop="10dp"-->
        <!--android:layout_marginBottom="10dp"-->
        <!--app:cardCornerRadius="@dimen/dimen8">-->
 
        <!--<RelativeLayout-->
            <!--android:id="@+id/rl_container2"-->
            <!--android:layout_width="wrap_content"-->
            <!--android:layout_height="wrap_content"-->
            <!--android:padding="@dimen/dimen6"-->
            <!--android:visibility="visible">-->
 
 
            <!--<RelativeLayout-->
                <!--android:id="@+id/rl_executing_task"-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:clickable="true"-->
                <!--android:foreground="?android:attr/selectableItemBackground"-->
                <!--android:orientation="horizontal"-->
                <!--android:focusable="true">-->
 
                <!--<ImageView-->
                    <!--android:id="@+id/iv_executing_task"-->
                    <!--android:layout_width="26dp"-->
                    <!--android:layout_height="26dp"-->
                    <!--android:background="@drawable/ic_problem" />-->
 
                <!--<TextView-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_centerVertical="true"-->
                    <!--android:layout_marginStart="10dp"-->
                    <!--android:layout_toEndOf="@id/iv_executing_task"-->
                    <!--android:title="@string/problem_info"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp" />-->
 
            <!--</RelativeLayout>-->
 
            <!--<android.support.constraint.ConstraintLayout-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:layout_below="@id/rl_executing_task">-->
 
                <!--<LinearLayout-->
                    <!--android:id="@+id/ll_problem_1"-->
                    <!--android:layout_width="match_parent"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--app:layout_constraintTop_toTopOf="parent">-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1"-->
                        <!--android:gravity="center"-->
                        <!--android:title="上月(2018-12)"-->
                        <!--android:textColor="@color/black" />-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1"-->
                        <!--android:gravity="center"-->
                        <!--android:title="本月(2019-01)"-->
                        <!--android:textColor="@color/black" />-->
 
                <!--</LinearLayout>-->
 
                <!--<com.github.mikephil.charting.charts.HorizontalBarChart-->
                    <!--android:id="@+id/bar_problem_1"-->
                    <!--android:layout_width="0dp"-->
                    <!--android:layout_height="400dp"-->
                    <!--app:layout_constraintLeft_toLeftOf="parent"-->
                    <!--app:layout_constraintRight_toLeftOf="@id/bar_problem_2"-->
                    <!--app:layout_constraintTop_toBottomOf="@id/ll_problem_1"-->
                    <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                    <!--app:layout_constraintHorizontal_weight="2">-->
                <!--</com.github.mikephil.charting.charts.HorizontalBarChart>-->
 
                <!--<android.support.v7.widget.RecyclerView-->
                    <!--android:id="@+id/rv_problem"-->
                    <!--android:layout_width="0dp"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:nestedScrollingEnabled="false"-->
                    <!--tools:targetApi="lollipop"-->
                    <!--app:layout_constraintTop_toBottomOf="@id/ll_problem_1"-->
                    <!--app:layout_constraintLeft_toRightOf="@id/bar_problem_1"-->
                    <!--app:layout_constraintRight_toLeftOf="@id/bar_problem_2"-->
                    <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                    <!--app:layout_constraintHorizontal_weight="1"-->
                    <!--android:visibility="gone">-->
                <!--</android.support.v7.widget.RecyclerView>-->
 
                <!--<com.github.mikephil.charting.charts.HorizontalBarChart-->
                    <!--android:id="@+id/bar_problem_2"-->
                    <!--android:layout_width="0dp"-->
                    <!--android:layout_height="400dp"-->
                    <!--app:layout_constraintRight_toRightOf="parent"-->
                    <!--app:layout_constraintLeft_toRightOf="@id/bar_problem_1"-->
                    <!--app:layout_constraintTop_toBottomOf="@id/ll_problem_1"-->
                    <!--app:layout_constraintHorizontal_chainStyle="spread"-->
                    <!--app:layout_constraintHorizontal_weight="2">-->
                <!--</com.github.mikephil.charting.charts.HorizontalBarChart>-->
 
            <!--</android.support.constraint.ConstraintLayout>-->
 
        <!--</RelativeLayout>-->
    <!--</android.support.v7.widget.CardView>-->
 
    <!--<android.support.v7.widget.CardView-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:layout_marginTop="10dp"-->
        <!--android:visibility="gone">-->
 
        <!--<RelativeLayout-->
            <!--android:id="@+id/rl_container3"-->
            <!--android:layout_width="match_parent"-->
            <!--android:layout_height="wrap_content"-->
            <!--android:layout_marginTop="10dp"-->
            <!--android:orientation="vertical">-->
 
            <!--<RelativeLayout-->
                <!--android:id="@+id/rl_recharge"-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:layout_marginLeft="10dp"-->
                <!--android:clickable="true"-->
                <!--android:foreground="?android:attr/selectableItemBackground"-->
                <!--android:orientation="horizontal">-->
 
                <!--<ImageView-->
                    <!--android:id="@+id/iv_history_info"-->
                    <!--android:layout_width="26dp"-->
                    <!--android:layout_height="26dp"-->
                    <!--android:background="@drawable/icon_task_history" />-->
 
                <!--<TextView-->
                    <!--android:layout_width="wrap_content"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_centerVertical="true"-->
                    <!--android:layout_marginLeft="10dp"-->
                    <!--android:layout_toRightOf="@id/iv_history_info"-->
                    <!--android:title="整改统计"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:textSize="12sp" />-->
 
            <!--</RelativeLayout>-->
 
            <!--<LinearLayout-->
                <!--android:id="@+id/ll_recharge"-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content"-->
                <!--android:layout_below="@id/rl_recharge"-->
                <!--android:orientation="vertical">-->
 
                <!--<LinearLayout-->
                    <!--android:layout_width="match_parent"-->
                    <!--android:layout_height="wrap_content">-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1.5"-->
                        <!--android:gravity="center"-->
                        <!--android:title="场景"-->
                        <!--android:textColor="@color/black" />-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1"-->
                        <!--android:gravity="center"-->
                        <!--android:title="上月"-->
                        <!--android:textColor="@color/black" />-->
 
                    <!--<TextView-->
                        <!--android:layout_width="0dp"-->
                        <!--android:layout_height="wrap_content"-->
                        <!--android:layout_weight="1"-->
                        <!--android:gravity="center"-->
                        <!--android:title="已整改"-->
                        <!--android:textColor="@color/black" />-->
                <!--</LinearLayout>-->
 
                <!--<android.support.v7.widget.RecyclerView-->
                    <!--android:id="@+id/rv_charge"-->
                    <!--android:layout_width="match_parent"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:nestedScrollingEnabled="false">-->
 
                <!--</android.support.v7.widget.RecyclerView>-->
 
            <!--</LinearLayout>-->
 
            <!--<View-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="8dp"-->
                <!--android:layout_below="@id/ll_recharge"-->
                <!--android:layout_marginTop="@dimen/dimen8"-->
                <!--android:background="#ebebeb" />-->
        <!--</RelativeLayout>-->
    <!--</android.support.v7.widget.CardView>-->
 
</LinearLayout>