linphone launcher
This commit is contained in:
parent
755569c73e
commit
8bdb269a72
2 changed files with 43 additions and 8 deletions
|
@ -2,17 +2,49 @@
|
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="@color/background_splashscreen">
|
android:background="@color/colorC">
|
||||||
|
|
||||||
<ImageView
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:src="@drawable/splashscreen"
|
android:orientation="vertical"
|
||||||
android:scaleType="center"/>
|
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
|
<ProgressBar
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_marginBottom="20dp"
|
||||||
android:layout_gravity="center_horizontal|bottom" />
|
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>
|
</FrameLayout>
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
|
|
||||||
<!-- NEW STRINGS -->
|
<!-- NEW STRINGS -->
|
||||||
|
|
||||||
|
<!-- splashscreen -->
|
||||||
|
<string name="app_description">free SIP VOIP client</string>
|
||||||
|
|
||||||
<!-- Setup -->
|
<!-- Setup -->
|
||||||
<string name="setup_title_assistant">Welcome</string>
|
<string name="setup_title_assistant">Welcome</string>
|
||||||
<string name="setup_title">Assistant</string>
|
<string name="setup_title">Assistant</string>
|
||||||
|
|
Loading…
Reference in a new issue