<?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="@string/game_playerprogress_placeholder"
        android:textColor="@color/game_progress_text"
        android:textSize="22sp"/>

    <TextView
        android:id="@+id/game_playerspeed"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/game_playerprogress"
        android:layout_alignStart="@+id/game_playerprogress"
        android:layout_below="@+id/game_playerprogress"
        android:text="@string/game_playerspeed_placeholder"
        android:textColor="@color/game_progress_text"
        android:textSize="22sp"/>

    <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="@string/game_fps_placeholder"
        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:id="@+id/game_countdown"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/game_countdown_placeholder"
        android:textColor="@color/countdown3"
        android:textSize="100sp"
        android:textStyle="bold"
        android:visibility="invisible"/>

</RelativeLayout>