mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
50 lines
1.4 KiB
XML
50 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/colorC">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_gravity="center">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/splashscreen"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:textSize="50sp"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/colorH"
|
|
android:text="@string/app_name"
|
|
android:layout_gravity="center"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="30sp"
|
|
android:textColor="@color/colorA"
|
|
android:text="@string/app_description"
|
|
android:layout_gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginBottom="20dp"
|
|
android:layout_gravity="center_horizontal|bottom" />
|
|
|
|
<ImageView
|
|
android:layout_height="10dp"
|
|
android:layout_width="100dp"
|
|
android:background="@color/colorA"
|
|
android:layout_gravity="center_horizontal|bottom" />
|
|
|
|
</FrameLayout>
|