EndlessRoll/app/src/main/res/layout/tutorial.xml
= fb3290a3b2 Added all drawables for IcyMountains
Added snow particle system
World on StartScene is randomly chosen
Last-level onGoalScreen shows "toNextWorld"
2018-01-13 17:50:27 +01:00

37 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_tutorial">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<TextView
android:id="@+id/tutorial_text_view"
style="@style/TutorialTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="@string/tutorial_placeholder"
android:textAlignment="center"/>
<ImageView
android:id="@+id/tutorial_image_view"
android:layout_width="320dp"
android:layout_height="wrap_content"
android:layout_below="@+id/tutorial_text_view"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:adjustViewBounds="true"
android:background="@drawable/xml_background_tutorialimageview"
android:padding="2dp"
android:scaleType="centerCrop"
android:src="@drawable/backgrounds_menu_grasslands"/>
</RelativeLayout>
</RelativeLayout>