aboutsummaryrefslogtreecommitdiffstats
path: root/src/schulchat/res/layout/welcome.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/schulchat/res/layout/welcome.xml')
-rw-r--r--src/schulchat/res/layout/welcome.xml109
1 files changed, 0 insertions, 109 deletions
diff --git a/src/schulchat/res/layout/welcome.xml b/src/schulchat/res/layout/welcome.xml
deleted file mode 100644
index f697ca443..000000000
--- a/src/schulchat/res/layout/welcome.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
-
- <include layout="@layout/toolbar" />
-
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="true">
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?attr/color_background_secondary">
-
- <LinearLayout
- android:id="@+id/linearLayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentBottom="true"
- android:minHeight="256dp"
- android:orientation="vertical"
- android:paddingStart="16dp"
- android:paddingLeft="16dp"
- android:paddingEnd="16dp"
- android:paddingRight="16dp"
- android:paddingBottom="8dp">
-
- <Space
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/welcome_header"
- android:textAppearance="@style/TextAppearance.Conversations.Title" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:text="@string/welcome_text"
- android:textAppearance="@style/TextAppearance.Conversations.Body1" />
-
- <TextView
- android:id="@id/import_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:text="@string/import_text"
- android:textColor="?attr/text_Color_Main"
- android:textSize="?attr/TextSizeBody"
- android:visibility="gone" />
-
- <Button
- android:id="@+id/import_database"
- style="@style/Widget.Conversations.Button.Borderless"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="end"
- android:text="@string/import_database"
- android:textColor="?attr/colorAccent"
- android:visibility="gone" />
-
- <Button
- android:id="@+id/create_account"
- style="@style/Widget.Conversations.Button.Borderless"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="end"
- android:text="@string/create_account"
- android:textColor="?attr/colorAccent" />
-
- <Button
- android:id="@+id/use_existing_account"
- style="@style/Widget.Conversations.Button.Borderless"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="end"
- android:text="@string/welcome_existing_account"
- android:textColor="?attr/colorAccent" />
- </LinearLayout>
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/linearLayout"
- android:layout_alignParentStart="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true">
-
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:padding="8dp"
- android:src="@drawable/logo" />
- </RelativeLayout>
- </RelativeLayout>
- </ScrollView>
-</LinearLayout> \ No newline at end of file