<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
|
android:orientation="vertical"
|
android:background="@color/white"
|
android:layout_height="match_parent">
|
|
<include layout="@layout/include_login_pwd_no_tip"/>
|
|
<LinearLayout
|
android:id="@+id/ll_login_pwd"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="12dp"
|
android:orientation="vertical">
|
|
<RelativeLayout
|
android:layout_width="wrap_content"
|
android:layout_height="50dp">
|
|
<TextView
|
android:id="@+id/tv_view_hint1"
|
android:layout_width="70dp"
|
android:layout_height="match_parent"
|
android:gravity="center_vertical"
|
android:text="再次输入"
|
android:textColor="#ff333333"
|
android:textSize="14sp" />
|
|
<EditText
|
android:id="@+id/et_login_pwd_repeat"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_toRightOf="@+id/tv_view_hint1"
|
android:background="@color/white"
|
android:hint="请再次输入新密码"
|
android:inputType="textPassword"
|
android:maxLength="18"
|
android:textColor="@color/black"
|
android:textSize="14sp" />
|
|
<ImageView
|
android:id="@+id/iv_eye_repeat"
|
android:layout_width="18dp"
|
android:layout_height="match_parent"
|
android:layout_alignParentEnd="true"
|
android:layout_centerHorizontal="true"
|
android:src="@drawable/select_eye" />
|
|
</RelativeLayout>
|
|
<include layout="@layout/include_line" />
|
|
</LinearLayout>
|
|
|
<TextView
|
android:id="@+id/tv_sure"
|
android:layout_width="match_parent"
|
android:text="确定"
|
android:textColor="#ffffffff"
|
android:gravity="center"
|
android:layout_marginTop="90dp"
|
android:layout_marginBottom="24dp"
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="12dp"
|
android:background="@drawable/bg_login"
|
android:textSize="14sp"
|
android:layout_height="40dp"/>
|
|
</LinearLayout>
|