created drawable for empty_energy redraw star drawable tick for completed levels on worldButton
89 lines
3.0 KiB
XML
89 lines
3.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"
|
|
android:clipChildren="false">
|
|
|
|
<ImageView
|
|
android:id="@+id/game_pausebutton"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_margin="10dp"
|
|
android:src="@drawable/guis_pausebutton" />
|
|
|
|
<include
|
|
android:id="@+id/game_toolbuttonbar"
|
|
layout="@layout/toolbuttonbar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="3dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/game_playerprogress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:text="0.0m"
|
|
android:textColor="#ffb405"
|
|
android:textSize="22sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/game_playerspeed"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0.0m/s"
|
|
android:textColor="#ffb405"
|
|
android:textSize="22sp"
|
|
android:layout_below="@+id/game_playerprogress"
|
|
android:layout_alignLeft="@+id/game_playerprogress"
|
|
android:layout_alignStart="@+id/game_playerprogress" />
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/game_fps"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:text="Fps: 00"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="15sp" />
|
|
|
|
<include
|
|
android:id="@+id/game_shortmenu"
|
|
layout="@layout/short_menu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:visibility="invisible"/>
|
|
|
|
<include
|
|
android:id="@+id/game_message"
|
|
layout="@layout/message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:visibility="invisible"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="3"
|
|
android:id="@+id/game_countdown"
|
|
android:layout_centerVertical="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:textSize="100sp"
|
|
android:visibility="invisible"
|
|
android:textColor="@color/countdown3"
|
|
android:textStyle="bold"/>
|
|
|
|
|
|
</RelativeLayout> |