fragment_signup.xml
1.7 KB
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
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/dialog_bg"
android:minWidth="293dp"
android:orientation="vertical" >
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/et_bg"
android:hint="@string/user_name_hint"
android:imeOptions="flagNoExtractUi"
android:textColor="@color/black_text" />
<EditText
android:id="@+id/pwd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/et_bg"
android:hint="@string/password_hint"
android:imeOptions="flagNoExtractUi"
android:inputType="textPassword"
android:textColor="@color/black_text" />
<Button
android:id="@+id/signup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:background="@drawable/btn_orange_bg"
android:padding="5dp"
android:text="@string/signup"
android:textColor="@android:color/white"
android:textSize="16sp" />
</LinearLayout>
</ScrollView>