OsmAnd/OsmAnd/res/layout/xmas_dialog.xml

42 lines
1.5 KiB
XML
Raw Normal View History

<?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-25 12:54:29 +02:00
<ScrollView
android:layout_width="match_parent"
2016-10-25 12:54:29 +02:00
android:layout_height="wrap_content">
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-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>
</LinearLayout>