59 lines
2.2 KiB
XML
59 lines
2.2 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_marginLeft="75dp"
|
|
android:layout_marginStart="75dp"
|
|
android:layout_marginTop="34dp"
|
|
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_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="38dp"
|
|
android:background="@drawable/playershapes_ball"
|
|
android:gravity="center"
|
|
android:text="Play"
|
|
android:textAlignment="gravity"
|
|
android:textColor="#ffffff"
|
|
android:textSize="26sp"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_unlock_levels"
|
|
style="@style/GameButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignBottom="@+id/startscreen_play"
|
|
android:layout_alignEnd="@+id/startscreen_sound"
|
|
android:layout_alignRight="@+id/startscreen_sound"
|
|
android:layout_marginBottom="26dp"
|
|
android:text="Unlock all levels"
|
|
android:visibility="visible"/>
|
|
|
|
<Button
|
|
android:id="@+id/startscreen_gain_90_ep"
|
|
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="Gain 90 ep"
|
|
android:visibility="visible"/>
|
|
|
|
</RelativeLayout> |