<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="fill_parent"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="14dp"
|
android:background="@drawable/bg_white_10dp">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_cancel"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:padding="16dp"
|
android:text="取消"
|
android:textColor="@color/textColor99"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_title"
|
android:textSize="@dimen/textSize"/>
|
|
<TextView
|
android:id="@+id/tv_action"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:padding="16dp"
|
android:text="确认"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_title"
|
android:textColor="@color/colorPrimary"
|
android:textSize="@dimen/textSize"/>
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:id="@+id/tv_title"
|
android:layout_centerInParent="true"
|
android:textColor="@color/textColor"
|
android:textSize="16sp"
|
android:textStyle="bold"
|
android:text="选择取车证件"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"/>
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:id="@+id/tv_sub_title"
|
android:textColor="@color/textColor99"
|
android:textSize="11sp"
|
android:textStyle="bold"
|
app:layout_constraintTop_toBottomOf="@id/tv_title"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginTop="6dp"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_id_card"
|
android:text="身份证"
|
android:gravity="center"
|
android:paddingHorizontal="20dp"
|
android:textColor="@color/textColor"
|
android:textSize="14sp"
|
android:paddingVertical="12dp"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_driver_card"
|
android:text="驾驶证"
|
android:gravity="center"
|
android:paddingHorizontal="20dp"
|
android:textColor="@color/textColor"
|
android:textSize="14sp"
|
android:paddingVertical="12dp"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_license"
|
android:text="驾驶员资格证"
|
android:gravity="center"
|
android:paddingHorizontal="20dp"
|
android:textColor="@color/textColor"
|
android:textSize="14sp"
|
android:paddingVertical="12dp"/>
|
</LinearLayout>
|
</FrameLayout>
|