what done?
This commit is contained in:
44
app/build/intermediates/res/merged/debug/layout/message.xml
Normal file
44
app/build/intermediates/res/merged/debug/layout/message.xml
Normal file
@ -0,0 +1,44 @@
|
||||
<?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/customButton"
|
||||
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/customButton"
|
||||
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/customButton"
|
||||
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>
|
Reference in New Issue
Block a user