Project

General

Profile

Download (3.17 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / popup_play_new_ui.xml @ 05f6d7bd

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
     android:layout_width="wrap_content"
4
     android:layout_height="wrap_content"
5
     android:orientation="horizontal"
6
     android:background="@color/dark_grey"
7
     android:baselineAligned="false"
8
     android:padding="5dp">
9

    
10
     <LinearLayout
11
          android:id="@+id/configLayout"
12
          android:layout_width="0dp"
13
          android:layout_height="wrap_content"
14
          android:layout_weight="1"
15
          android:orientation="vertical">
16

    
17
          <Button
18
             android:id="@+id/buttonConfig"
19
             android:layout_width="wrap_content"
20
             android:layout_height="wrap_content"/>
21
          <Button
22
             android:id="@+id/buttonTutorials"
23
             android:layout_width="wrap_content"
24
             android:layout_height="wrap_content"/>
25
          <Button
26
             android:id="@+id/buttonScores"
27
             android:layout_width="wrap_content"
28
             android:layout_height="wrap_content"/>
29
          <Button
30
             android:id="@+id/buttonPatterns"
31
             android:layout_width="wrap_content"
32
             android:layout_height="wrap_content"/>
33
          <Button
34
             android:id="@+id/buttonSolver"
35
             android:layout_width="wrap_content"
36
             android:layout_height="wrap_content"/>
37

    
38
     </LinearLayout>
39

    
40
     <ScrollView
41
          android:layout_width="0dp"
42
          android:layout_height="wrap_content"
43
          android:layout_weight="1">
44

    
45
          <LinearLayout
46
              android:id="@+id/playLayout"
47
              android:layout_width="wrap_content"
48
              android:layout_height="wrap_content"
49
              android:orientation="vertical">
50

    
51
              <Button
52
                android:id="@+id/buttonFreePlay"
53
                android:layout_width="wrap_content"
54
                android:layout_height="wrap_content"/>
55
              <Button
56
                android:id="@+id/buttonLevel1"
57
                android:layout_width="wrap_content"
58
                android:layout_height="wrap_content"/>
59
              <Button
60
                android:id="@+id/buttonLevel2"
61
                android:layout_width="wrap_content"
62
                android:layout_height="wrap_content"/>
63
              <Button
64
                android:id="@+id/buttonLevel3"
65
                android:layout_width="wrap_content"
66
                android:layout_height="wrap_content"/>
67
              <Button
68
                android:id="@+id/buttonLevel4"
69
                android:layout_width="wrap_content"
70
                android:layout_height="wrap_content"/>
71
              <Button
72
                android:id="@+id/buttonLevel5"
73
                android:layout_width="wrap_content"
74
                android:layout_height="wrap_content"/>
75
              <Button
76
                android:id="@+id/buttonLevel6"
77
                android:layout_width="wrap_content"
78
                android:layout_height="wrap_content"/>
79
              <Button
80
                android:id="@+id/buttonLevelFullScramble"
81
                android:layout_width="wrap_content"
82
                android:layout_height="wrap_content"/>
83

    
84
          </LinearLayout>
85
     </ScrollView>
86

    
87
</LinearLayout>
(36-36/39)