riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
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
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    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:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimary"
    android:paddingStart="@dimen/dimen8"
    android:paddingEnd="@dimen/dimen8"
    android:paddingTop="@dimen/dimen2"
    android:paddingBottom="@dimen/dimen2"
    tools:ignore="UnusedAttribute">
 
    <TextView
        android:id="@+id/txt_date"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Title"
        android:textStyle="bold"
        android:textSize="16sp"
        tools:text="5月2日"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@id/txt_total_task_count"
        app:layout_constraintBaseline_toBaselineOf="@id/txt_total_task_count"/>
 
 
 
    <TextView
        android:id="@+id/txt_total_task_count"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Title"
        android:textSize="24dp"
        android:textStyle="bold"
        tools:text="0"
        app:layout_constraintStart_toStartOf="@id/txt_total_task"
        app:layout_constraintEnd_toEndOf="@id/txt_total_task"
        app:layout_constraintTop_toTopOf="parent"/>
 
    <TextView
        android:id="@+id/txt_total_task"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Abstract"
        android:textStyle="bold"
        android:textSize="10sp"
        android:text="总任务"
        app:layout_constraintStart_toEndOf="@id/txt_date"
        app:layout_constraintEnd_toStartOf="@id/txt_complete_task"
        app:layout_constraintTop_toBottomOf="@id/txt_total_task_count"
        app:layout_constraintBottom_toBottomOf="parent"/>
 
    <TextView
        android:id="@+id/txt_complete_task_count"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Title"
        android:textSize="24dp"
        android:textStyle="bold"
        tools:text="0"
        app:layout_constraintStart_toStartOf="@id/txt_complete_task"
        app:layout_constraintEnd_toEndOf="@id/txt_complete_task"
        app:layout_constraintTop_toTopOf="@id/txt_total_task_count"/>
 
    <TextView
        android:id="@+id/txt_complete_task"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Abstract"
        android:textSize="10sp"
        android:textStyle="bold"
        android:text="已完成"
        app:layout_constraintStart_toEndOf="@id/txt_total_task"
        app:layout_constraintEnd_toStartOf="@id/txt_changed_task"
        app:layout_constraintTop_toTopOf="@id/txt_total_task"/>
 
    <TextView
        android:id="@+id/txt_changed_task_count"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Title"
        android:textSize="24dp"
        android:textStyle="bold"
        tools:text="0"
        app:layout_constraintStart_toStartOf="@id/txt_changed_task"
        app:layout_constraintEnd_toEndOf="@id/txt_changed_task"
        app:layout_constraintTop_toTopOf="@id/txt_total_task_count"/>
 
    <TextView
        android:id="@+id/txt_changed_task"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/TextStyle.Abstract"
        android:textSize="10sp"
        android:textStyle="bold"
        android:text="已整改"
        app:layout_constraintStart_toEndOf="@id/txt_complete_task"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="@id/txt_total_task"/>
 
</android.support.constraint.ConstraintLayout>