mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
51 lines
1.4 KiB
XML
51 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/colorC"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:src="@drawable/splashscreen"
|
|
android:layout_width="200dp"
|
|
android:layout_height="200dp"
|
|
android:layout_gravity="center"/>
|
|
|
|
<TextView
|
|
android:text="@string/app_name"
|
|
style="@style/font21"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_gravity="center"/>
|
|
|
|
<TextView
|
|
android:text="@string/app_description"
|
|
android:textSize="28sp"
|
|
android:visibility="gone"
|
|
android:textColor="@color/colorA"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
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" />
|
|
|
|
<View
|
|
android:background="@color/colorA"
|
|
android:layout_height="10dp"
|
|
android:layout_width="100dp"
|
|
android:layout_gravity="center_horizontal|bottom" />
|
|
|
|
</FrameLayout>
|