mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
144 lines
5 KiB
XML
144 lines
5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#0c609c"
|
|
android:gravity="center"
|
|
>
|
|
|
|
<RelativeLayout
|
|
android:layout_gravity="center"
|
|
android:layout_width="240dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="@dimen/standard_gap"
|
|
android:layout_marginRight="@dimen/standard_gap"
|
|
>
|
|
|
|
<ImageView
|
|
android:src="@drawable/selfie_x"
|
|
android:id="@+id/selfie_x"
|
|
android:layout_width="110dp"
|
|
android:layout_height="match_parent"
|
|
android:contentDescription="@string/welcome_image_no_selfies"
|
|
/>
|
|
|
|
<ImageView
|
|
android:src="@drawable/proprietary_x"
|
|
android:id="@+id/proprietary_x"
|
|
android:layout_marginStart="@dimen/standard_gap"
|
|
android:layout_marginLeft="@dimen/standard_gap"
|
|
android:layout_width="110dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_toRightOf="@+id/selfie_x"
|
|
android:contentDescription="@string/welcome_image_proprietary"
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:text="@string/tutorial_3_text"
|
|
android:layout_gravity="center"
|
|
android:textStyle="bold"
|
|
android:textAlignment="center"
|
|
android:textSize="@dimen/normal_text"
|
|
android:gravity="center_horizontal"
|
|
android:textColor="@android:color/white"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/bullet"
|
|
android:paddingRight="4dp"
|
|
android:textSize="16sp"
|
|
android:paddingTop="@dimen/standard_gap"
|
|
android:textColor="@android:color/white"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:text="@string/tutorial_3_subtext_1"
|
|
android:layout_gravity="center"
|
|
android:textAlignment="textStart"
|
|
android:paddingTop="@dimen/standard_gap"
|
|
android:gravity="start"
|
|
android:textColor="@android:color/white"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:layout_gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/bullet"
|
|
android:paddingRight="4dp"
|
|
android:textSize="16sp"
|
|
android:textColor="@android:color/white"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:text="@string/tutorial_3_subtext_2"
|
|
android:layout_gravity="center"
|
|
android:textAlignment="textStart"
|
|
android:gravity="start"
|
|
android:textColor="@android:color/white"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/bullet"
|
|
android:paddingRight="4dp"
|
|
android:textSize="16sp"
|
|
android:textColor="@android:color/white"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="240dp"
|
|
android:text="@string/tutorial_3_subtext_3"
|
|
android:layout_gravity="center"
|
|
android:textAlignment="textStart"
|
|
android:gravity="start"
|
|
android:textColor="@android:color/white"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|