51 lines
1.9 KiB
XML
51 lines
1.9 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">
|
|
|
|
<ToggleButton
|
|
android:id="@+id/startscreen_sound"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/startscreen_play"
|
|
android:layout_marginTop="26dp"
|
|
android:layout_toEndOf="@+id/startscreen_play"
|
|
android:layout_toRightOf="@+id/startscreen_play"
|
|
android:background="@drawable/xml_selector_sound"
|
|
android:textOff=""
|
|
android:textOn=""/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_play"
|
|
android:layout_width="110dp"
|
|
android:layout_height="110dp"
|
|
android:layout_marginTop="40dp"
|
|
android:background="@drawable/playershapes_ball"
|
|
android:text="Play"
|
|
android:textSize="25sp"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_comingsoon"
|
|
style="@style/GameButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Level Up"
|
|
android:layout_alignTop="@+id/startscreen_play"
|
|
android:layout_toRightOf="@+id/startscreen_sound"
|
|
android:layout_toEndOf="@+id/startscreen_sound"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_maxcheat"
|
|
style="@style/GameButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Lv to 100"
|
|
android:layout_below="@+id/startscreen_play"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_marginLeft="48dp"
|
|
android:layout_marginStart="48dp"/>
|
|
|
|
</RelativeLayout> |