-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathactivity_main.xml
More file actions
110 lines (93 loc) · 3.96 KB
/
activity_main.xml
File metadata and controls
110 lines (93 loc) · 3.96 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?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:background="@color/dark_grey"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="15dip"
android:orientation="horizontal"
tools:context="com.example.alexander.cryptarbitrage2.MainActivity">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="40dip"
android:text="@string/main_title"
android:textColor="@color/black"
android:textSize="30sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="20dip"
android:text="@string/please_login"
android:textColor="@color/black"
android:textSize="28sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dip"
android:orientation="horizontal"
android:layout_marginBottom="10dip">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="80dip"
android:textColor="@color/black"
android:text="@string/email"
android:textSize="20sp" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textWebEmailAddress"
android:text="@string/enter_email_here"
android:textSize="20sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dip"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="45dip"
android:textColor="@color/black"
android:text="@string/password"
android:textSize="20sp" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textVisiblePassword"
android:text="@string/enter_password_here"
android:textSize="20sp"
android:textStyle="italic" />
</LinearLayout>
<TextView
android:id="@+id/forgotPasswordButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="30dip"
android:text="@string/forgot_password"
android:textAlignment="center"
android:textColor="@color/dark_blue"
tools:clickable="true" />
<Button
android:id="@+id/logInButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="130dip"
android:text="@string/sign_in" />
<Button
android:id="@+id/signUpButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="130dip"
android:text="@string/sign_up" />
</LinearLayout>
</LinearLayout>