mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
82 lines
2.7 KiB
XML
82 lines
2.7 KiB
XML
<?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:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
tools:context=".WelcomeActivity">
|
|
|
|
<androidx.legacy.widget.Space
|
|
android:layout_weight="3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/welcome_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="128dp"
|
|
android:layout_weight="16"
|
|
android:gravity="bottom"
|
|
android:src="@drawable/intro1"
|
|
android:paddingLeft="32dp"
|
|
android:paddingRight="32dp"
|
|
tools:ignore="contentDescription"/>
|
|
|
|
<TextView
|
|
android:id="@+id/welcome_header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:padding="8dp"
|
|
android:layout_marginBottom="24dp"
|
|
android:text="@string/welcome_chat_over_email"
|
|
android:textSize="22sp"
|
|
android:textStyle="bold"/>
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="10dp"
|
|
android:gravity="center_horizontal">
|
|
|
|
<Button
|
|
style="@style/ButtonPrimary"
|
|
android:id="@+id/login_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="@string/login_header"/>
|
|
|
|
<Button
|
|
style="@style/ButtonSecondary"
|
|
android:id="@+id/backup_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="@string/import_backup_title"/>
|
|
|
|
<Button
|
|
style="@style/ButtonSecondary"
|
|
android:id="@+id/scan_qr_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:text="@string/scan_invitation_code"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<androidx.legacy.widget.Space
|
|
android:layout_weight="5"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"/>
|
|
|
|
</LinearLayout>
|
|
|