-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialog_reset_password.xml
41 lines (37 loc) · 1.54 KB
/
dialog_reset_password.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
android:layout_width="300dp"
android:layout_height="140dp"
android:background="@drawable/styles_gray_backgrounds"
android:gravity="center"
tools:context=".Activity_SignUp_SignIn">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/signUp_Email"/>
<EditText
android:id="@+id/ed_email_reset"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:layout_marginTop="8dp"
android:background="@drawable/styles_white_backgrounds"
android:inputType="textEmailAddress"/>
<com.skydoves.elasticviews.ElasticButton
android:id="@+id/btnOk_resetPasswordDialogActivity"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="20dp"
android:layout_gravity="end"
app:button_duration="200"
android:background="@drawable/styles_button_dark_gray_background"
android:textColor="#fff"
android:textStyle="bold"
android:text="@string/btn_ok"
app:button_scale="0.9" />
</LinearLayout>