aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/src/main/res/layout/activity_login.xml
diff options
context:
space:
mode:
authorMarvin Borner2018-08-16 16:06:55 +0200
committerMarvin Borner2018-08-16 16:06:55 +0200
commit730c3d3aa97d50b4962f581559b62e9b0e03aacf (patch)
tree9a11d1bee938483b4f02127b6b35c15372edf423 /app/src/main/res/layout/activity_login.xml
parent1a4ab97a0a4b417195fa35d15b9ca668392a7cc6 (diff)
Updated version and name (soon name change incoming!)
Diffstat (limited to 'app/src/main/res/layout/activity_login.xml')
-rw-r--r--app/src/main/res/layout/activity_login.xml79
1 files changed, 0 insertions, 79 deletions
diff --git a/app/src/main/res/layout/activity_login.xml b/app/src/main/res/layout/activity_login.xml
deleted file mode 100644
index 9e7d237..0000000
--- a/app/src/main/res/layout/activity_login.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center_vertical|center_horizontal"
- android:orientation="vertical"
- android:paddingBottom="@dimen/activity_vertical_margin"
- android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- tools:context=".LoginActivity">
-
- <!-- Login progress -->
- <ProgressBar
- android:id="@+id/login_progress"
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="8dp"
- android:visibility="gone" />
-
- <ScrollView
- android:id="@+id/login_form"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <LinearLayout
- android:id="@+id/email_login_form"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
- <android.support.design.widget.TextInputLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <AutoCompleteTextView
- android:id="@+id/email"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/prompt_email"
- android:inputType="textEmailAddress"
- android:maxLines="1"
- android:singleLine="true" />
-
- </android.support.design.widget.TextInputLayout>
-
- <android.support.design.widget.TextInputLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <EditText
- android:id="@+id/password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/prompt_password"
- android:imeActionId="6"
- android:imeActionLabel="@string/action_sign_in_short"
- android:imeOptions="actionUnspecified"
- android:inputType="textPassword"
- android:maxLines="1"
- android:singleLine="true" />
-
- </android.support.design.widget.TextInputLayout>
-
- <Button
- android:id="@+id/email_sign_in_button"
- style="@style/Widget.AppCompat.Button.Colored"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="16dp"
- android:background="@drawable/gradient_button"
- android:text="@string/action_sign_in"
- android:textStyle="bold" />
-
- </LinearLayout>
- </ScrollView>
-</LinearLayout> \ No newline at end of file