|
@@ -0,0 +1,125 @@
|
|
|
+<?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:background="#F4F4F4"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_margin="@dimen/dp_10"
|
|
|
+ android:background="@drawable/bg_corners_01"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="55dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_marginStart="@dimen/dp_10"
|
|
|
+ android:id="@+id/textView20"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="23sp"
|
|
|
+ android:textColor="#484848"
|
|
|
+ android:text="原密码:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/ed_old_psd"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="输入原密码"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="textPassword"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="#484848"
|
|
|
+ android:textColorHint="#BDBDBD"
|
|
|
+ android:textSize="20sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_margin="@dimen/dp_10"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_corners_01"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="55dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_marginStart="@dimen/dp_10"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="23sp"
|
|
|
+ android:textColor="#484848"
|
|
|
+ android:text="新密码:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/ed_new_psd"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="请输入新密码"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="textPassword"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="#484848"
|
|
|
+ android:textColorHint="#BDBDBD"
|
|
|
+ android:textSize="20sp" />
|
|
|
+ </LinearLayout>
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="@dimen/dp_10"
|
|
|
+ android:layout_marginEnd="@dimen/dp_10"
|
|
|
+ android:background="#E9E9E9"/>
|
|
|
+ <LinearLayout
|
|
|
+
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="55dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_marginStart="@dimen/dp_10"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="23sp"
|
|
|
+ android:textColor="#484848"
|
|
|
+ android:text="确认新密码:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/ed_new_psd_agin"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="请再次输入新密码"
|
|
|
+ android:importantForAutofill="no"
|
|
|
+ android:inputType="textPassword"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="#484848"
|
|
|
+ android:textColorHint="#BDBDBD"
|
|
|
+ android:textSize="20sp" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/btn_sure"
|
|
|
+ android:layout_marginTop="50dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="55dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:layout_marginStart="20dp"
|
|
|
+ android:layout_marginEnd="20dp"
|
|
|
+ android:layout_marginBottom="20dp"
|
|
|
+ android:text="确认修改"
|
|
|
+ android:textSize="20sp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:background="@drawable/bg_corners_05"/>
|
|
|
+</LinearLayout>
|