<?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/page_bg">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintTop_toTopOf="parent"
|
android:background="@color/white">
|
<TextView
|
android:id="@+id/tv_phone"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_form_text"
|
android:text="修改绑定手机"
|
android:textStyle="bold"
|
android:paddingHorizontal="12dp"
|
android:drawableEnd="@mipmap/more_black"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:id="@+id/tv_pwd"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_form_text"
|
android:text="修改密码"
|
android:textStyle="bold"
|
android:paddingHorizontal="12dp"
|
android:drawableEnd="@mipmap/more_black"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:id="@+id/tv_unregister"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_form_text"
|
android:text="注销账号"
|
android:textStyle="bold"
|
android:paddingHorizontal="12dp"
|
android:drawableEnd="@mipmap/more_black"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
</LinearLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|