riku
2025-10-30 e9aa93f381afcf9f9cf0c39f2b9e32375ed49528
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
<?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:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:background="?android:attr/selectableItemBackground"
    android:focusable="true">
 
    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingLeft="@dimen/dimen4"
        android:paddingRight="@dimen/dimen4"
        android:paddingTop="10dp"
        android:paddingBottom="10dp">
        <TextView
            android:id="@+id/tv_item_task_list_time"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:textSize="@dimen/textSize_16"
            android:gravity="center"
            android:minEms="1"
            tools:text="1"
            android:textColor="@color/colorPrimary"/>
 
        <TextView
            android:id="@+id/tv_item_task_list_name"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toEndOf="@id/tv_item_task_list_time"
            app:layout_constraintEnd_toStartOf="@id/tv_item_task_list_status"
            app:layout_constraintTop_toTopOf="parent"
            android:layout_marginStart="@dimen/dimen8"
            android:layout_marginEnd="@dimen/dimen8"
            android:textSize="17sp"
            tools:text="任务名称任务名称任务名称任务名称任务名称任务名称任务名称任务名称任务名称"/>
 
        <TextView
            android:id="@+id/tv_item_task_list_address"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            app:layout_constraintStart_toStartOf="@id/tv_item_task_list_name"
            app:layout_constraintEnd_toEndOf="@id/tv_item_task_list_name"
            app:layout_constraintTop_toBottomOf="@id/tv_item_task_list_name"
            app:layout_constraintHorizontal_bias="0"
            android:layout_marginEnd="@dimen/dimen8"
            tools:text="任务地点任务地点任务地点任务地点任务地点任务地点任务地点任务地点任务地点任务地点"
            android:textSize="13sp" />
 
        <TextView
            android:id="@+id/tv_scene_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/textTag"
            app:layout_constraintStart_toStartOf="@id/tv_item_task_list_name"
            app:layout_constraintEnd_toEndOf="@id/tv_item_task_list_name"
            app:layout_constraintTop_toBottomOf="@id/tv_item_task_list_address"
            app:layout_constraintHorizontal_bias="0"
            android:singleLine="true"
            tools:text="工地工地工地工地工地工地工地" />
 
 
        <TextView
            android:id="@+id/tv_item_task_list_status"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:gravity="center"
            tools:text="删除"
            android:singleLine="true"
            android:textColor="@color/colorAccent"/>
 
    </android.support.constraint.ConstraintLayout>
 
 
    <View
        android:id="@+id/view"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@color/addTaskBG"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintVertical_bias="1"/>
 
 
</android.support.constraint.ConstraintLayout>