123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#ffffff"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="#ff1f2228">
- <ImageView
- android:id="@+id/tysdkn_change_password_back"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:padding="15dp"
- android:layout_centerVertical="true"
- android:src="@drawable/tysdkn_recahrge_back_left" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="修改登录密码"
- android:textColor="#ffffff"
- android:textSize="16sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:orientation="vertical">
- <EditText
- android:id="@+id/tysdkn_et_old_password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="12dp"
- android:background="@null"
- android:hint="输入旧密码"
- android:inputType="textPassword"
- android:maxLines="1"
- android:textSize="13sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="10dp"
- android:background="#FFDCDCDC" />
- <EditText
- android:id="@+id/tysdkn_et_new_password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="25dp"
- android:background="@null"
- android:hint="输入新密码"
- android:inputType="textPassword"
- android:maxLines="1"
- android:textSize="13sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="10dp"
- android:background="#FFDCDCDC" />
- <EditText
- android:id="@+id/tysdkn_et_confirm_password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="25dp"
- android:background="@null"
- android:hint="确认密码"
- android:inputType="textPassword"
- android:maxLines="1"
- android:textSize="13sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="10dp"
- android:background="#FFDCDCDC" />
- </LinearLayout>
- <Button
- android:id="@+id/tysdkn_btn_change_password"
- android:layout_width="match_parent"
- android:layout_height="38dp"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="25dp"
- android:background="@drawable/tysdkn_btn_blue_selector"
- android:text="修改密码"
- android:textColor="#ffffff"
- android:textSize="16sp" />
- </LinearLayout>
|