Added snow particle system World on StartScene is randomly chosen Last-level onGoalScreen shows "toNextWorld"
37 lines
1.4 KiB
XML
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> |