lmw
2025-01-10 601f14db94013373df700e007095f7f2f5ecbe24
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        app:layout_constraintTop_toTopOf="parent"
        android:paddingBottom="20dp"
        android:id="@+id/cl"
        android:layout_marginHorizontal="20dp"
        android:background="@drawable/bg_white_20dp"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="44dp"
            android:gravity="center"
            android:text="补充说明"
            android:textColor="@color/deepGreen"
            android:fontFamily="@font/fly_flower_song"
            android:textSize="28sp"
            app:layout_constraintTop_toTopOf="parent" />
 
        <EditText
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:id="@+id/et_content"
            android:layout_marginTop="32dp"
            android:layout_marginHorizontal="20dp"
            android:textSize="15sp"
            android:background="@drawable/bg_grey_line_20"
            android:gravity="center_vertical|top"
            android:padding="18dp"
            android:hint="请输入补充说明内容"
            app:layout_constraintTop_toBottomOf="@id/tv_title"/>
 
 
        <TextView
            android:id="@+id/tv_action"
            android:layout_width="match_parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:layout_height="wrap_content"
            android:layout_marginStart="10dp"
            android:layout_marginTop="29dp"
            android:gravity="center"
            android:paddingVertical="14dp"
            android:background="@drawable/bg_mid_green_30"
            android:layout_marginEnd="20dp"
            android:text="提交,并进入下一步"
            android:textColor="@color/white"
            android:textSize="15sp"
            android:layout_marginBottom="50dp"
            app:layout_constraintTop_toBottomOf="@id/et_content"/>
 
    </androidx.constraintlayout.widget.ConstraintLayout>
 
    <ImageView
        android:id="@+id/iv_close"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/close_white"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/cl"
        android:padding="10dp"
        android:layout_marginTop="35dp"/>
 
</androidx.constraintlayout.widget.ConstraintLayout>