1 |
0c52af30
|
Leszek Koltunski
|
<?xml version="1.0" encoding="utf-8"?>
|
2 |
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3 |
|
|
android:layout_width="fill_parent"
|
4 |
|
|
android:layout_height="fill_parent"
|
5 |
|
|
android:orientation="vertical" >
|
6 |
|
|
|
7 |
|
|
<LinearLayout
|
8 |
|
|
android:layout_width="fill_parent"
|
9 |
a7a7cc9c
|
Leszek Koltunski
|
android:layout_height="50dp"
|
10 |
0c52af30
|
Leszek Koltunski
|
android:gravity="center|fill_horizontal" >
|
11 |
|
|
|
12 |
a7a7cc9c
|
Leszek Koltunski
|
<Button
|
13 |
|
|
android:id="@+id/rubikScramble"
|
14 |
0c52af30
|
Leszek Koltunski
|
android:layout_width="wrap_content"
|
15 |
a7a7cc9c
|
Leszek Koltunski
|
android:layout_height="fill_parent"
|
16 |
0c52af30
|
Leszek Koltunski
|
android:layout_weight="0.5"
|
17 |
a7a7cc9c
|
Leszek Koltunski
|
android:onClick="Scramble"
|
18 |
0c52af30
|
Leszek Koltunski
|
android:paddingLeft="5dp"
|
19 |
|
|
android:paddingRight="5dp"
|
20 |
a7a7cc9c
|
Leszek Koltunski
|
android:text="@string/scramble" />
|
21 |
|
|
|
22 |
|
|
<org.distorted.component.HorizontalNumberPicker
|
23 |
|
|
android:id="@+id/rubikNumberPicker"
|
24 |
|
|
android:layout_width="192dp"
|
25 |
|
|
android:layout_height="fill_parent"/>
|
26 |
|
|
|
27 |
|
|
<Button
|
28 |
|
|
android:id="@+id/rubikSolve"
|
29 |
|
|
android:layout_width="wrap_content"
|
30 |
|
|
android:layout_height="fill_parent"
|
31 |
|
|
android:layout_weight="0.5"
|
32 |
|
|
android:onClick="Solve"
|
33 |
|
|
android:paddingLeft="5dp"
|
34 |
|
|
android:paddingRight="5dp"
|
35 |
|
|
android:text="@string/solve" />
|
36 |
|
|
|
37 |
|
|
</LinearLayout>
|
38 |
|
|
|
39 |
|
|
<org.distorted.magic.RubikSurfaceView
|
40 |
|
|
android:id="@+id/rubikSurfaceView"
|
41 |
|
|
android:layout_width="fill_parent"
|
42 |
|
|
android:layout_height="0dp"
|
43 |
|
|
android:layout_weight="1" />
|
44 |
|
|
|
45 |
|
|
<LinearLayout
|
46 |
f3e12931
|
Leszek Koltunski
|
android:id="@+id/sizeLayout"
|
47 |
a7a7cc9c
|
Leszek Koltunski
|
android:layout_width="match_parent"
|
48 |
|
|
android:layout_height="wrap_content"
|
49 |
f3e12931
|
Leszek Koltunski
|
android:gravity="center"
|
50 |
|
|
android:orientation="horizontal">
|
51 |
0c52af30
|
Leszek Koltunski
|
</LinearLayout>
|
52 |
|
|
|
53 |
f548942f
|
Leszek Koltunski
|
<LinearLayout
|
54 |
|
|
android:layout_width="fill_parent"
|
55 |
a7a7cc9c
|
Leszek Koltunski
|
android:layout_height="50dp"
|
56 |
f548942f
|
Leszek Koltunski
|
android:gravity="center|fill_horizontal" >
|
57 |
|
|
|
58 |
|
|
<Button
|
59 |
a7a7cc9c
|
Leszek Koltunski
|
android:id="@+id/rubikSettings"
|
60 |
f548942f
|
Leszek Koltunski
|
android:layout_width="wrap_content"
|
61 |
|
|
android:layout_height="fill_parent"
|
62 |
a7a7cc9c
|
Leszek Koltunski
|
android:layout_weight="1"
|
63 |
|
|
android:onClick="Settings"
|
64 |
|
|
android:paddingLeft="3dp"
|
65 |
|
|
android:paddingRight="3dp"
|
66 |
|
|
android:text="@string/settings" />
|
67 |
f548942f
|
Leszek Koltunski
|
|
68 |
a7a7cc9c
|
Leszek Koltunski
|
<Button
|
69 |
|
|
android:id="@+id/rubikScores"
|
70 |
|
|
android:layout_width="wrap_content"
|
71 |
|
|
android:layout_height="fill_parent"
|
72 |
|
|
android:layout_weight="1"
|
73 |
|
|
android:onClick="Scores"
|
74 |
|
|
android:paddingLeft="3dp"
|
75 |
|
|
android:paddingRight="3dp"
|
76 |
|
|
android:text="@string/scores" />
|
77 |
f548942f
|
Leszek Koltunski
|
|
78 |
|
|
<Button
|
79 |
a7a7cc9c
|
Leszek Koltunski
|
android:id="@+id/rubikAbout"
|
80 |
f548942f
|
Leszek Koltunski
|
android:layout_width="wrap_content"
|
81 |
|
|
android:layout_height="fill_parent"
|
82 |
a7a7cc9c
|
Leszek Koltunski
|
android:layout_weight="1"
|
83 |
|
|
android:onClick="About"
|
84 |
|
|
android:paddingLeft="3dp"
|
85 |
|
|
android:paddingRight="3dp"
|
86 |
|
|
android:text="@string/about" />
|
87 |
f548942f
|
Leszek Koltunski
|
|
88 |
|
|
</LinearLayout>
|
89 |
|
|
|
90 |
0c52af30
|
Leszek Koltunski
|
</LinearLayout>
|