mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
69 lines
2.2 KiB
XML
69 lines
2.2 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"
|
|
android:layout_margin="10dp"
|
|
android:background="@color/colorH"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_welcome"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:src="@drawable/linphone_orange" />
|
|
|
|
<TextView
|
|
android:layout_margin="10dp"
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_name"
|
|
android:textSize="30dp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/about_text"
|
|
android:gravity="center"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/text_contrast"
|
|
android:id="@+id/AboutText"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/about_link"
|
|
android:autoLink="web"
|
|
android:gravity="center"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/text_contrast"
|
|
android:id="@+id/AboutLink"/>
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center">
|
|
|
|
<Button
|
|
android:id="@+id/send_log"
|
|
android:background="@drawable/button_background"
|
|
android:padding="10dp"
|
|
android:layout_margin="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/menu_send_log"/>
|
|
|
|
<Button
|
|
android:id="@+id/reset_log"
|
|
android:background="@drawable/button_background"
|
|
android:padding="10dp"
|
|
android:layout_margin="5dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/menu_reset_log"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|