<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:background="@color/white">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_contact"
|
android:text="紧急联系人"
|
style="@style/style_form_text_setting"
|
android:layout_marginEnd="14dp"
|
android:layout_marginStart="14dp"
|
android:drawableEnd="@mipmap/icon_more_grey"
|
app:layout_constraintTop_toTopOf="parent" />
|
<View style="@style/style_form_divider_line"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
app:layout_constraintTop_toBottomOf="@id/tv_contact"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_real_name"
|
android:text="实名认证"
|
style="@style/style_form_text_setting"
|
android:layout_marginEnd="14dp"
|
android:layout_marginStart="14dp"
|
android:drawableEnd="@mipmap/icon_more_grey"
|
app:layout_constraintTop_toBottomOf="@id/tv_contact" />
|
<View style="@style/style_form_divider_line"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
app:layout_constraintTop_toBottomOf="@id/tv_real_name"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_state"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_real_name"
|
android:layout_marginEnd="40dp"
|
style="@style/style_common_text"
|
android:textStyle="bold"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|