summaryrefslogtreecommitdiff
path: root/res/layout/activity_menu.xml
blob: 93cd2bc5963e4e82e39508c3bc7617e78134d562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="org.neocities.autoart.ballbounce.Menu">

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/menu_title"
        android:textSize="25sp"
        android:layout_centerHorizontal="true"
        android:textColor="#000000"
        android:id="@+id/menu_title"
        />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/menu_title"
        android:background="#b1e5ff"
        android:text="@string/normal"
        android:layout_marginTop="20sp"
        android:id="@+id/normal_mode"
        />


    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/normal_mode"
        android:background="#ffdfb1"
        android:text="@string/crazy_gravity"
        android:layout_marginTop="20sp"
        android:id="@+id/crazy_gravity_mode"
        />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/crazy_gravity_mode"
        android:background="#ebc4ff"
        android:layout_marginTop="20sp"
        android:text="@string/colour_changing"
        android:id="@+id/colour_changing_mode"

        />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/colour_changing_mode"
        android:background="#c7ffc4"
        android:layout_marginTop="20sp"
        android:text="@string/oscillation"
        android:id="@+id/oscillation_mode"

        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/oscillation_mode"
        android:layout_marginTop="20sp"
        android:text="@string/bw_mode"
        android:background="#dadada"
        android:id="@+id/bw_mode"
        />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/bw_mode"
        android:layout_marginTop="20sp"
        android:text="@string/flip_mode"
        android:background="#faa0a1"
        android:id="@+id/flip_mode"
        />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/flip_mode"
        android:layout_marginTop="20sp"
        android:text="@string/random_mode"
        android:background="#faf7a0"
        android:id="@+id/random_mode"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/random_mode"
        android:layout_marginTop="20sp"
        android:text="@string/highscores"
        android:background="#ffd7f0"
        android:id="@+id/highscores"
        />

    </RelativeLayout>
    </ScrollView>


</RelativeLayout>