linphone-android/res/layout/assistant_welcome.xml
2015-09-15 17:38:42 +02:00

71 lines
No EOL
2.3 KiB
XML

<?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">
<TextView
android:text="@string/assistant_welcome"
style="@style/font6"
android:textAllCaps="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="20dp"
android:layout_gravity="center"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_margin="20dp"
android:layout_gravity="center">
<Button
android:id="@+id/create_account"
android:text="@string/assistant_create_account"
android:background="@drawable/assistant_button"
style="@style/font8"
android:contentDescription="@string/assistant_create_account"
android:layout_marginTop="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
<Button
android:id="@+id/login_linphone"
android:text="@string/assistant_login_linphone"
android:background="@drawable/assistant_button"
style="@style/font8"
android:contentDescription="@string/assistant_login_linphone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_centerInParent="true"/>
<Button
android:id="@+id/login_generic"
android:text="@string/assistant_login_generic"
android:background="@drawable/assistant_button"
style="@style/font8"
android:contentDescription="@string/assistant_login_generic"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_centerInParent="true"/>
<Button
android:id="@+id/remote_provisioning"
android:text="@string/assistant_remote_provisioning"
android:background="@drawable/assistant_button"
style="@style/font8"
android:contentDescription="@string/assistant_remote_provisioning"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_centerInParent="true"/>
</LinearLayout>
</LinearLayout>