57 lines
2.1 KiB
XML
57 lines
2.1 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_marginTop="34dp"
|
|
android:background="@drawable/xml_selector_sound"
|
|
android:textOff=""
|
|
android:textOn=""
|
|
android:layout_below="@+id/startscreen_play"
|
|
android:layout_toRightOf="@+id/startscreen_play"
|
|
android:layout_toEndOf="@+id/startscreen_play"
|
|
android:layout_marginLeft="75dp"
|
|
android:layout_marginStart="75dp"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_play"
|
|
android:layout_width="110dp"
|
|
android:layout_height="110dp"
|
|
android:layout_marginTop="38dp"
|
|
android:background="@drawable/playershapes_ball"
|
|
android:text="Play"
|
|
android:textSize="25sp"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:textColor="#ffffff"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_comingsoon"
|
|
style="@style/GameButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Level Up"
|
|
android:visibility="visible"
|
|
android:layout_alignBottom="@+id/startscreen_play"
|
|
android:layout_alignRight="@+id/startscreen_sound"
|
|
android:layout_alignEnd="@+id/startscreen_sound"
|
|
android:layout_marginBottom="26dp"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_maxcheat"
|
|
style="@style/GameButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_below="@+id/startscreen_play"
|
|
android:layout_marginLeft="48dp"
|
|
android:layout_marginStart="48dp"
|
|
android:text="Lv to 100"
|
|
android:visibility="visible"/>
|
|
|
|
</RelativeLayout> |