lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
       android:layout_width="fill_parent"
          android:layout_height="fill_parent" 
          xmlns:android="http://schemas.android.com/apk/res/android">
   <ImageView 
          android:id="@+id/mainMenuBackground"
          android:src="@drawable/title_background"
          android:adjustViewBounds="true"
          android:gravity="center_vertical"
          android:scaleType="fitXY"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"/>        
          
    <ImageView 
         android:id="@+id/mainMenuTitle"
         android:src="@drawable/title"
         android:adjustViewBounds="true"
         android:layout_width="336dp" 
         android:layout_height="153dp" 
         android:layout_gravity="center_horizontal" 
         android:layout_marginTop="20dp"/>
         
       <LinearLayout
               xmlns:android="http://schemas.android.com/apk/res/android"
            android:gravity="bottom" android:layout_gravity="bottom|center_horizontal" android:layout_height="wrap_content" android:layout_width="wrap_content" android:orientation="vertical">
            
       <FrameLayout
           android:layout_width="wrap_content" 
           android:layout_height="wrap_content" 
           android:paddingTop="10dp" 
           android:layout_gravity="center_horizontal">
            <ImageView 
               android:id="@+id/linearModeButton"
               android:src="@drawable/ui_button_linear_mode"
               android:layout_width="wrap_content" 
               android:layout_height="wrap_content" 
               android:clickable="true" />
           <ImageView
               android:id="@+id/linearModeLocked"
               android:src="@drawable/ui_locked"
               android:layout_width="wrap_content" 
               android:layout_height="wrap_content"
                  android:layout_gravity="center"/>
       </FrameLayout>
       
       <FrameLayout
           android:layout_width="wrap_content" 
           android:layout_height="wrap_content" 
           android:paddingTop="10dp" 
           android:layout_gravity="center_horizontal">
            <ImageView 
               android:id="@+id/levelSelectButton"
               android:src="@drawable/ui_button_level_select"
               android:layout_width="wrap_content" 
               android:layout_height="wrap_content" 
               android:clickable="true" />
           <ImageView
               android:id="@+id/levelSelectLocked"
               android:src="@drawable/ui_locked"
               android:layout_width="wrap_content" 
               android:layout_height="wrap_content"
                  android:layout_gravity="center"
                  />
       </FrameLayout>
       
         
       <ImageView 
           android:id="@+id/controlsButton"
           android:src="@drawable/ui_button_controls"
           android:layout_width="wrap_content" 
           android:layout_height="wrap_content" 
           android:paddingTop="10dp"
           android:paddingBottom="10dp"
           android:clickable="true" 
           android:layout_gravity="center_horizontal"/>
   </LinearLayout>
       
</FrameLayout>