1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.shuishuo.app.common.views.BaseToolbar
- android:id="@id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- app:title="修改密码"
- app:left_text="返回"
- style="@style/fullToolbarStyle"/>
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:padding="16dp">
- <EditText
- android:id="@+id/mine_change_pwd_old_ET"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="请输入旧密码"
- android:layout_marginTop="16dp"
- android:inputType="textPassword"/>
- <EditText
- android:id="@+id/mine_change_pwd_new_ET"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="请输入新密码"
- android:layout_marginTop="16dp"
- android:inputType="textPassword"/>
- <EditText
- android:id="@+id/mine_change_pwd_confirm_ET"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="请确认新密码"
- android:layout_marginTop="16dp"
- android:inputType="textPassword"/>
- <TextView
- android:id="@+id/mine_change_pwd_tips"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:text="安全等级低:数字和字母,长度8位 \n安全等级中:长度10位 \n安全等级高:包含大写字母,长度12位"
- android:textColor="@color/grey_light" />
- </LinearLayout>
- </LinearLayout>
|