EndlessRoll/app/src/main/res/layout/tutorial.xml
= c71d1a767e Made levels easier (probably not enough)
Changed tutorials to standard (evtl. text + evtl. image) + added images
2017-07-27 11:50:03 +02:00

36 lines
1.3 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="@drawable/backgrounds_menu_shortmenu">-->
<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="Welcome to Endless Roll!\nHave fun!"
android:textAlignment="center"/>
<ImageView
android:id="@+id/tutorial_image_view"
android:layout_width="320dp"
android:layout_height="200dp"
android:layout_below="@+id/tutorial_text_view"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:padding="2dp"
android:background="#000000"
android:scaleType="fitXY"
android:src="@drawable/backgrounds_menu_grass"/>
</RelativeLayout>
</RelativeLayout>