45 lines
1.6 KiB
XML
45 lines
1.6 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">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Game Over"
|
|
android:id="@+id/message_title"
|
|
android:layout_centerVertical="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:textSize="55sp"/>
|
|
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Restart"
|
|
android:id="@+id/message_leftbutton"
|
|
style="@style/GameButton"
|
|
android:layout_marginTop="37dp"
|
|
android:layout_below="@+id/message_title"
|
|
android:layout_alignStart="@+id/message_title"/>
|
|
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Exit"
|
|
style="@style/GameButton"
|
|
android:id="@+id/message_exitbutton"
|
|
android:layout_alignTop="@+id/message_leftbutton"
|
|
android:layout_alignEnd="@+id/message_title"/>
|
|
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Try again"
|
|
style="@style/GameButton"
|
|
android:id="@+id/message_tryagainbutton"
|
|
android:visibility="visible"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_below="@+id/message_leftbutton"
|
|
android:layout_alignStart="@+id/message_leftbutton"/>
|
|
|
|
</RelativeLayout> |