<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
android:id="@+id/me_psw_parent_rl"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_104"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent">
|
|
<TextView
|
android:id="@+id/me_psw_title_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:layout_marginStart="@dimen/dp_20"
|
android:layout_marginTop="@dimen/dp_24"
|
android:textColor="@color/text_65000000"
|
android:textSize="@dimen/text_14"
|
/>
|
|
<RelativeLayout
|
android:id="@+id/me_psw_rl"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_52"
|
android:layout_below="@+id/me_psw_title_tv"
|
android:layout_marginStart="@dimen/dp_20"
|
android:layout_marginTop="@dimen/dp_8"
|
android:layout_marginEnd="@dimen/dp_20"
|
android:background="@drawable/me_change_psw_bj"
|
|
>
|
|
<EditText
|
android:id="@+id/me_psw_et"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_23"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="@dimen/dp_16"
|
android:layout_marginEnd="@dimen/dp_60"
|
android:background="@null"
|
android:hint="@string/home_login_input_6_16"
|
android:inputType="textPassword"
|
android:lines="1"
|
android:maxLines="1"
|
android:textColor="@color/text_E6000000"
|
android:textColorHint="@color/text_66000000"
|
android:textSize="@dimen/text_16" />
|
|
<ImageView
|
android:id="@+id/me_psw_hide_iv"
|
android:layout_width="@dimen/dp_20"
|
android:layout_height="@dimen/dp_20"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="@dimen/dp_32"
|
android:src="@drawable/hide" />
|
|
<View
|
android:id="@+id/line_v"
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:layout_alignParentBottom="true"
|
android:layout_marginStart="@dimen/dp_20"
|
android:layout_marginEnd="@dimen/dp_20"
|
android:background="@color/text_E1E1E1" />
|
|
</RelativeLayout>
|
</RelativeLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|