mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
42 lines
No EOL
1.4 KiB
XML
42 lines
No EOL
1.4 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:gravity="center_horizontal"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageView
|
|
android:paddingTop="40dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/setup_title_assistant"/>
|
|
|
|
<TextView
|
|
android:paddingTop="40dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/setup_validate_account"
|
|
android:textColor="@android:color/black" />
|
|
|
|
<RelativeLayout
|
|
android:layout_marginTop="20dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/setup_check"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/button"
|
|
android:layout_centerInParent="true" />
|
|
|
|
<TextView
|
|
android:layout_centerInParent="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/setup_check_account_validation"
|
|
android:textColor="@android:color/black" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |