<?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>
|