65 lines
2.3 KiB
XML
65 lines
2.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">
|
|
|
|
<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"/>
|
|
|
|
<TextView
|
|
android:id="@+id/game_playerprogress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginTop="4dp"
|
|
android:text="@string/game_playerprogress_placeholder"
|
|
android:textColor="@color/secondary"
|
|
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="gone"/>
|
|
|
|
<include
|
|
android:id="@+id/game_game_over_message"
|
|
layout="@layout/game_over_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:visibility="gone"/>
|
|
|
|
<include
|
|
android:id="@+id/game_goal_message"
|
|
layout="@layout/goal_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:visibility="gone"/>
|
|
|
|
</RelativeLayout> |