157 lines
5.0 KiB
XML
157 lines
5.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="20dp"
|
||
|
android:background="@drawable/shp_rectangle_white_5"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="8dp"
|
||
|
android:text="密码修改"
|
||
|
android:textColor="@color/black"
|
||
|
android:textSize="18sp" />
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
style="@style/item_gray"
|
||
|
android:layout_marginTop="10dp">
|
||
|
|
||
|
<ImageView
|
||
|
style="@style/style_hint_star"
|
||
|
android:visibility="visible" />
|
||
|
|
||
|
<TextView
|
||
|
style="@style/item_title"
|
||
|
android:text="原密码" />
|
||
|
|
||
|
<View style="@style/vertical_line" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/et_origin_pwd"
|
||
|
style="@style/item_content"
|
||
|
android:gravity="left"
|
||
|
android:hint="请输入原密码"
|
||
|
android:inputType="textPassword" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/iv_show_pwd_origin"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:layout_marginRight="10dp"
|
||
|
android:background="@drawable/ic_hide_pwd" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
style="@style/item_gray"
|
||
|
android:layout_marginTop="10dp">
|
||
|
|
||
|
<ImageView
|
||
|
style="@style/style_hint_star"
|
||
|
android:visibility="visible" />
|
||
|
|
||
|
<TextView
|
||
|
style="@style/item_title"
|
||
|
android:text="新密码" />
|
||
|
|
||
|
<View style="@style/vertical_line" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/et_new_pwd"
|
||
|
style="@style/item_content"
|
||
|
android:gravity="left"
|
||
|
android:hint="请输入新密码"
|
||
|
android:inputType="textPassword" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/iv_show_new_pwd"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginRight="10dp"
|
||
|
android:background="@drawable/ic_hide_pwd" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
style="@style/item_gray"
|
||
|
android:layout_marginTop="10dp">
|
||
|
|
||
|
<ImageView
|
||
|
style="@style/style_hint_star"
|
||
|
android:visibility="visible" />
|
||
|
|
||
|
<TextView
|
||
|
style="@style/item_title"
|
||
|
android:text="确认密码" />
|
||
|
|
||
|
<View style="@style/vertical_line" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/et_new_confirm_pwd"
|
||
|
style="@style/item_content"
|
||
|
android:gravity="left"
|
||
|
android:hint="请输入新密码"
|
||
|
android:inputType="textPassword" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/iv_pwd_new_confirm"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginRight="10dp"
|
||
|
android:background="@drawable/ic_hide_pwd" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="15dp"
|
||
|
android:gravity="right"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_cancel"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginRight="20dp"
|
||
|
android:clickable="true"
|
||
|
android:focusable="true"
|
||
|
android:padding="10dp"
|
||
|
android:text="取消"
|
||
|
android:textColor="@color/gray_text" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_confirm"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:clickable="true"
|
||
|
android:focusable="true"
|
||
|
android:padding="10dp"
|
||
|
android:text="确定"
|
||
|
android:textColor="@color/text_blue" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|