2016-01-28 13:09:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-04 15:45:24 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:background="@color/brand_300"
|
2019-06-03 15:12:29 +00:00
|
|
|
android:id="@+id/container_view">
|
2016-01-28 13:09:10 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2017-04-04 15:45:24 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/subtitleTextView"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
style="@style/Body2"
|
|
|
|
|
android:textSize="17sp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
tools:text="@string/intro_2_subtitle"
|
|
|
|
|
android:layout_marginBottom="4dp" />
|
2017-03-23 13:06:16 +00:00
|
|
|
|
|
|
|
|
<ImageView
|
2017-04-04 15:45:24 +00:00
|
|
|
android:id="@+id/titleImageView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:contentDescription="@string/brand_name" />
|
2017-03-23 13:06:16 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2017-04-04 15:45:24 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
style="@style/Title1"
|
|
|
|
|
android:textSize="30sp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
tools:text="@string/intro_2_title"
|
|
|
|
|
android:layout_marginBottom="28dp" />
|
2016-01-28 13:09:10 +00:00
|
|
|
|
2020-02-18 11:07:47 +00:00
|
|
|
<ImageView
|
2017-04-04 15:45:24 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:src="@drawable/intro_2"
|
|
|
|
|
app:srcCompat="@drawable/intro_2" />
|
2016-01-28 13:09:10 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2017-04-04 15:45:24 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/descriptionTextView"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
style="@style/Body2"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:layout_margin="28dp"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:lineSpacingExtra="4dp"
|
|
|
|
|
android:maxWidth="350dp"
|
|
|
|
|
tools:text="@string/intro_2_description"/>
|
2016-01-28 13:09:10 +00:00
|
|
|
</LinearLayout>
|