|
@@ -0,0 +1,190 @@
|
|
|
+<?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"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <include
|
|
|
+ android:id="@+id/toolbar_include"
|
|
|
+ layout="@layout/common_toolbar_layout" />
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:id="@+id/scrollView"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:background="@drawable/bg_white_10dp"
|
|
|
+ android:scrollbars="vertical"
|
|
|
+ android:layout_marginBottom="30dp"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/tv_confirm"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/toolbar_include">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingBottom="10dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_tip"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="32dp"
|
|
|
+ android:src="@drawable/icon_exclamation_mark_tip"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:includeFontPadding="false"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textSize="@dimen/sp_18"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/iv_tip"
|
|
|
+ tools:text="将155****4306所绑定的机构解绑" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_tip"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:includeFontPadding="false"
|
|
|
+ android:paddingStart="20dp"
|
|
|
+ android:paddingEnd="20dp"
|
|
|
+ android:textColor="@color/color_666666"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_title"
|
|
|
+ tools:text="解绑机构后,在此机构的数据将无法恢复,确认要继续解绑" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_star"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:includeFontPadding="false"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="@color/color_ff5a56"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/tv_reason_title"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/tv_reason_title" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_reason_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="28dp"
|
|
|
+ android:includeFontPadding="false"
|
|
|
+ android:text="解绑原因:"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toRightOf="@+id/tv_star"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_tip" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/dp_83"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="@drawable/shape_6dp_border_eaeaea_1dp"
|
|
|
+ android:gravity="left"
|
|
|
+ android:hint="请输入解绑原因"
|
|
|
+ android:inputType="text"
|
|
|
+ android:paddingLeft="5dp"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:paddingRight="5dp"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:textColor="@color/black_333"
|
|
|
+ android:textColorHint="@color/color_999999"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_reason_title" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_verify_code_bg"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="54dp"
|
|
|
+ android:layout_marginStart="12dp"
|
|
|
+ android:layout_marginEnd="12dp"
|
|
|
+ android:layout_marginBottom="23dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:background="@drawable/shape_6dp_border_eaeaea_1dp"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/et_content"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_send_verify_code"
|
|
|
+ android:layout_width="94dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="获取验证码"
|
|
|
+ android:textColor="@color/color_ff2dc7aa"
|
|
|
+ android:textSize="@dimen/sp_14"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/view_verify_code_bg"
|
|
|
+ app:layout_constraintRight_toRightOf="@+id/view_verify_code_bg"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/view_verify_code_bg" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_line"
|
|
|
+ android:layout_width="1dp"
|
|
|
+ android:layout_height="18dp"
|
|
|
+ android:background="@color/color_ff2dc7aa"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/tv_send_verify_code"
|
|
|
+ app:layout_constraintRight_toLeftOf="@+id/tv_send_verify_code"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/tv_send_verify_code" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_num"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:background="@color/transparent"
|
|
|
+ android:hint="请输入短信验证码"
|
|
|
+ android:inputType="number"
|
|
|
+ android:maxLength="6"
|
|
|
+ android:maxLines="1"
|
|
|
+ android:paddingStart="12dp"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textColorHint="@color/color_999999"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/view_verify_code_bg"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@+id/view_verify_code_bg"
|
|
|
+ app:layout_constraintRight_toLeftOf="@+id/view_line"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/view_verify_code_bg" />
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_confirm"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="44dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:layout_marginBottom="26dp"
|
|
|
+ android:background="@drawable/shape_login_bt_bg"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="注销账号"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/sp_18"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent" />
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|