lmw
2023-06-25 a988e7c15f5ce63785b77e01c89bec2565668982
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_marginStart="14dp"
    android:layout_marginTop="7dp"
    android:layout_marginEnd="14dp"
    android:background="@drawable/bg_white_4"
    android:orientation="vertical">
 
    <TextView
        android:id="@+id/tv_state"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="12dp"
        android:layout_marginTop="13dp"
        tools:text="同意"
        android:textColor="#ff16a12b"
        android:textSize="16sp" />
 
    <TextView
        android:id="@+id/tv_time_start"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        android:layout_marginTop="16dp"
        android:layout_marginBottom="10dp"
        android:drawableStart="@mipmap/appeal_time_green"
        android:drawablePadding="6dp"
        tools:text="4月3日 14:00"
        android:textColor="#ff27282d"
        android:textSize="14sp" />
 
    <include layout="@layout/include_line_left_15" />
 
    <TextView
        android:id="@+id/tv_time_end"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        android:layout_marginTop="12dp"
        android:layout_marginBottom="10dp"
        android:drawableStart="@mipmap/appeal_time_red"
        android:drawablePadding="6dp"
        tools:text="4月3日 14:00"
        android:textColor="#ff27282d"
        android:textSize="14sp" />
 
    <include layout="@layout/include_line_left_15" />
 
    <TextView
        android:id="@+id/tv_time_out"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        android:layout_marginTop="12dp"
        android:layout_marginBottom="19dp"
        tools:text="超时50分钟,扣款:¥102.23"
        android:textColor="#fff33c3c"
        android:textSize="12sp" />
 
 
    <include layout="@layout/include_line_left_15" />
 
    <TextView
        android:id="@+id/tv_content"
        android:layout_width="wrap_content"
        android:layout_marginEnd="24dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        android:layout_marginTop="14dp"
        tools:text="申诉内容:这里是内容这里是内容这里是内容这里是内容里是内容这里是内容这里是内容这里是内容这里是内容"
        android:textColor="#ff383838"
        android:textSize="14sp" />
 
    <RelativeLayout
        android:layout_marginTop="12dp"
        android:layout_width="match_parent"
        android:layout_height="62dp">
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_img"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
 
 
 
    </RelativeLayout>
 
    <TextView
        android:id="@+id/tv_time_img"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="9dp"
        android:layout_gravity="right"
        android:layout_marginBottom="19dp"
        tools:text="2022-01-18 16:45"
        android:textColor="#ff383838"
        android:textSize="14sp"
        />
 
    <include layout="@layout/include_line"/>
 
    <RelativeLayout
        android:id="@+id/rl_bottom"
        android:layout_marginTop="14dp"
        android:layout_width="match_parent"
        android:layout_marginBottom="24dp"
        android:layout_height="wrap_content">
 
        <TextView
            android:id="@+id/tv_return_money"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="11dp"
            tools:text="退回金额:¥10"
            android:textColor="#fff33c3c"
            android:textSize="12sp"
            />
 
        <TextView
            android:id="@+id/tv_dell_time"
            android:layout_width="118dp"
            android:layout_height="20dp"
            android:layout_marginEnd="9dp"
            tools:text="2022-01-18 16:45"
            android:textColor="#ff383838"
            android:layout_alignParentEnd="true"
            android:textSize="14sp"
            />
 
    </RelativeLayout>
 
</LinearLayout>