<?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"
|
android:orientation="vertical"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:background="@drawable/bg_white_top_20dp">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="55dp"
|
android:id="@+id/tv_man"
|
app:layout_constraintTop_toTopOf="parent"
|
android:text="男"
|
android:gravity="center"
|
android:textStyle="bold"
|
android:textSize="15sp"
|
android:textColor="@color/textColor66"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="55dp"
|
android:id="@+id/tv_woman"
|
app:layout_constraintTop_toTopOf="parent"
|
android:text="女"
|
android:gravity="center"
|
android:textStyle="bold"
|
android:textSize="15sp"
|
android:textColor="@color/textColor66"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="55dp"
|
android:id="@+id/tv_hide"
|
app:layout_constraintTop_toTopOf="parent"
|
android:text="保密"
|
android:gravity="center"
|
android:textStyle="bold"
|
android:textSize="15sp"
|
android:textColor="@color/textColor66"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="55dp"
|
android:id="@+id/tv_cancel"
|
app:layout_constraintTop_toTopOf="parent"
|
android:text="取消"
|
android:gravity="center"
|
android:textSize="15sp"
|
android:textColor="@color/textColor66"/>
|
</LinearLayout>
|