<?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"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/text_F5F7FA"
|
tools:context=".ui.me.MeChangePasswordActivity">
|
|
<include
|
android:id="@+id/toolbar_top_fragment_house_list_rl"
|
layout="@layout/toolbar_top_view_44" />
|
|
<LinearLayout
|
android:id="@+id/me_psw_ll"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/toolbar_top_fragment_house_list_rl">
|
|
<include
|
android:id="@+id/me_change_password_old_ic"
|
layout="@layout/me_change_password_line" />
|
|
<include
|
android:id="@+id/me_change_password_new_ic"
|
layout="@layout/me_change_password_line" />
|
|
<include
|
android:id="@+id/me_change_password_affirm_ic"
|
layout="@layout/me_change_password_line" />
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/me_psw_error_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:layout_marginTop="@dimen/dp_30"
|
android:layout_marginEnd="@dimen/dp_20"
|
android:text="@string/home_login_least6"
|
android:textColor="@color/text_565758"
|
android:textSize="@dimen/text_14"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/me_psw_ll" />
|
|
<TextView
|
android:id="@+id/home_affirm_tv"
|
android:layout_width="0dp"
|
android:layout_height="52dp"
|
android:layout_marginTop="@dimen/dp_100"
|
android:layout_marginStart="@dimen/dp_20"
|
android:layout_marginEnd="@dimen/dp_20"
|
android:background="@drawable/yesandnocheck"
|
android:enabled="false"
|
android:gravity="center"
|
android:text="@string/home_login_affirm"
|
android:textColor="@color/text_FFFFFFFF"
|
android:textSize="18sp"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/me_psw_ll" />
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|