2016-04-19 18:03:24 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-03-18 09:30:22 +01:00
|
|
|
<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 android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fillViewport="true">
|
|
|
|
<RelativeLayout
|
2016-04-19 18:03:24 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-04-22 00:17:08 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-03-18 09:30:22 +01:00
|
|
|
android:background="?attr/color_background_primary">
|
2016-04-22 00:17:08 +02:00
|
|
|
|
2018-03-18 09:30:22 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout"
|
2016-04-22 00:17:08 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-18 09:30:22 +01:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:minHeight="256dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp">
|
|
|
|
<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"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Title"/>
|
2018-03-18 09:30:22 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:text="@string/welcome_text"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"/>
|
2018-03-18 09:30:22 +01:00
|
|
|
<Button
|
|
|
|
android:id="@+id/create_account"
|
2018-04-21 22:17:47 +02:00
|
|
|
style="@style/Widget.Conversations.Button.Borderless"
|
2018-03-18 09:30:22 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:text="@string/create_account"
|
2018-04-27 14:50:27 +02:00
|
|
|
android:textColor="?colorAccent"/>
|
2018-03-18 09:30:22 +01:00
|
|
|
<Button
|
|
|
|
android:id="@+id/use_own_provider"
|
2018-04-21 22:17:47 +02:00
|
|
|
style="@style/Widget.Conversations.Button.Borderless"
|
2018-03-18 09:30:22 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="right"
|
|
|
|
android:text="@string/use_own_provider"
|
|
|
|
android:textColor="?android:textColorSecondary"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_above="@+id/linearLayout"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="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/main_logo"/>
|
|
|
|
</RelativeLayout>
|
2016-04-22 00:17:08 +02:00
|
|
|
</RelativeLayout>
|
2018-03-18 09:30:22 +01:00
|
|
|
</ScrollView>
|
|
|
|
</LinearLayout>
|