|
@@ -0,0 +1,81 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout 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"
|
|
|
+ android:orientation="vertical"
|
|
|
+ tools:ignore="MissingDefaultResource">
|
|
|
+
|
|
|
+ <include
|
|
|
+ android:id="@+id/toolbar_include"
|
|
|
+ layout="@layout/common_toolbar_layout" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_phone"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ android:text="--"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="20sp" />
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:background="@drawable/bg_white_10dp">
|
|
|
+
|
|
|
+ <com.cooleshow.base.widgets.ClearEditText
|
|
|
+ android:theme="@style/MyEditText"
|
|
|
+ android:textCursorDrawable="@drawable/shape_2dc7aa_1dp"
|
|
|
+ android:id="@+id/et_password"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/dp_48"
|
|
|
+ android:background="@null"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:hint="请输入账号原密码"
|
|
|
+ android:inputType="textPassword"
|
|
|
+ android:paddingLeft="14dp"
|
|
|
+ android:paddingRight="14dp"
|
|
|
+ android:textColor="@color/color_1a1a1a"
|
|
|
+ android:textColorHint="@color/color_aaaaaa"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_confirm"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="44dp"
|
|
|
+ android:layout_marginLeft="25dp"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:layout_marginRight="25dp"
|
|
|
+ android:background="?attr/klx_main_bt_background"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="确定"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/sp_18" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_forget_pwd"
|
|
|
+ android:textSize="@dimen/sp_14"
|
|
|
+ android:gravity="center"
|
|
|
+ android:textColor="@color/color_666666"
|
|
|
+ android:text="忘记密码"
|
|
|
+ android:paddingBottom="16dp"
|
|
|
+ android:paddingTop="16dp"
|
|
|
+ android:layout_marginLeft="25dp"
|
|
|
+ android:layout_marginRight="25dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+</LinearLayout>
|