<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical" android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:paddingLeft="16dp"
|
android:paddingRight="16dp">
|
<EditText
|
android:id="@+id/et_pwd1"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:imeOptions="actionNext"
|
android:inputType="textPassword"
|
android:nextFocusForward="@+id/et_pwd2"
|
android:hint="新密码"/>
|
<EditText
|
android:id="@+id/et_pwd2"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:inputType="textPassword"
|
android:hint="再次输入新密码"/>
|
</LinearLayout>
|