Files
andors-trail/AndorsTrail/res/layout-land/startscreen.xml
Zukero a8b24abb39 Select your hero !
Support for three different hero sprites.
Externalized New Game Creation in a separate fragment.
Enhanced title screen UI.
Continuable game preview.
2017-10-31 18:26:11 +01:00

58 lines
2.0 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" >
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/title_bg_layout" />
<TextView
android:id="@+id/startscreen_version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="@android:string/unknownName" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<!-- android:background="@layout/title_bg_layout" -->
<LinearLayout
android:id="@+id/startcreen_centerarea"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.4"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/startscreen_dev_version"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="#FFFFFFFF"
android:gravity="center_horizontal"
android:textColor="#880000"
android:visibility="gone" />
</LinearLayout>
<FrameLayout
android:id="@+id/startscreen_fragment_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.6"
android:gravity="bottom|center_horizontal" />
<!-- <include layout="@layout/startscreen_mainmenu" />
</FrameLayout> -->
</LinearLayout>
</RelativeLayout>