2016-10-19 21:13:24 +02:00
|
|
|
<?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="wrap_content"
|
2016-10-25 12:54:29 +02:00
|
|
|
android:orientation="vertical">
|
2016-10-19 21:13:24 +02:00
|
|
|
|
2016-10-25 12:54:29 +02:00
|
|
|
<ScrollView
|
2016-10-19 21:13:24 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-10-25 12:54:29 +02:00
|
|
|
android:layout_height="wrap_content">
|
2016-10-19 21:13:24 +02:00
|
|
|
|
2016-10-25 12:54:29 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="24dp">
|
2016-10-19 21:13:24 +02:00
|
|
|
|
2016-10-25 12:54:29 +02:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_christmas_illustration"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:text="@string/christmas_desc"
|
|
|
|
android:textColor="@color/color_white"
|
|
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="22dp"
|
|
|
|
android:text="@string/christmas_desc_q"
|
|
|
|
android:textColor="@color/color_white"
|
|
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
2016-10-19 21:13:24 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|