|
@@ -0,0 +1,66 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<android.support.constraint.ConstraintLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:theme="@style/KdanLoginRegisterTheme"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_resetPwd_title"
|
|
|
+ android:fontFamily="sans-serif-medium"
|
|
|
+ android:textColor="#DE000000"
|
|
|
+ android:textSize="20sp"
|
|
|
+ android:text="@string/kdanlrui_reset_pwd_dialog_title"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_marginLeft="24dp"
|
|
|
+ android:layout_marginRight="24dp"
|
|
|
+ android:gravity="left"
|
|
|
+ android:layout_width="240dp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_resetPwd_description"
|
|
|
+ android:textColor="#99000000"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:text="@string/kdanlrui_reset_pwd_dialog_description"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/tv_resetPwd_title"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/tv_resetPwd_title"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/tv_resetPwd_title"
|
|
|
+ android:gravity="left"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_resetPwd_email"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:inputType="textEmailAddress"
|
|
|
+ android:hint="@string/kdanlrui_reset_pwd_dialog_email_hint"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/tv_resetPwd_title"
|
|
|
+ app:layout_constraintRight_toRightOf="@id/tv_resetPwd_title"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/tv_resetPwd_description"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <Button
|
|
|
+ style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
|
+ android:id="@+id/btn_resetPwd_positive"
|
|
|
+ android:text="@string/kdanlrui_reset_pwd_dialog_positive_btn"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/et_resetPwd_email"
|
|
|
+ android:layout_marginTop="36dp"
|
|
|
+ android:layout_marginRight="8dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <Button
|
|
|
+ style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
|
+ android:id="@+id/btn_resetPwd_negative"
|
|
|
+ android:text="@string/kdanlrui_reset_pwd_dialog_negative_btn"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/btn_resetPwd_positive"
|
|
|
+ app:layout_constraintTop_toTopOf="@id/btn_resetPwd_positive"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@id/btn_resetPwd_positive"
|
|
|
+ android:layout_marginRight="8dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+</android.support.constraint.ConstraintLayout>
|