1
|
<?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
|
android:layout_height="50dp"
|
10
|
android:gravity="center|fill_horizontal" >
|
11
|
|
12
|
<Button
|
13
|
android:id="@+id/rubikScramble"
|
14
|
android:layout_width="wrap_content"
|
15
|
android:layout_height="fill_parent"
|
16
|
android:layout_weight="0.5"
|
17
|
android:onClick="Scramble"
|
18
|
android:paddingLeft="5dp"
|
19
|
android:paddingRight="5dp"
|
20
|
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
|
android:id="@+id/sizeLayout"
|
47
|
android:layout_width="match_parent"
|
48
|
android:layout_height="wrap_content"
|
49
|
android:gravity="center"
|
50
|
android:orientation="horizontal">
|
51
|
</LinearLayout>
|
52
|
|
53
|
</LinearLayout>
|