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:id="@+id/upperBar"
|
9
|
android:layout_width="fill_parent"
|
10
|
android:layout_height="52dp"
|
11
|
android:gravity="center"
|
12
|
android:orientation="horizontal">
|
13
|
</LinearLayout>
|
14
|
|
15
|
<org.distorted.main.RubikSurfaceView
|
16
|
android:id="@+id/rubikSurfaceView"
|
17
|
android:layout_width="fill_parent"
|
18
|
android:layout_height="0dp"
|
19
|
android:layout_weight="1" />
|
20
|
|
21
|
<LinearLayout
|
22
|
android:layout_width="match_parent"
|
23
|
android:layout_height="55dp"
|
24
|
android:orientation="horizontal">
|
25
|
|
26
|
<LinearLayout
|
27
|
android:id="@+id/mainBarLeft"
|
28
|
android:layout_width="match_parent"
|
29
|
android:layout_height="match_parent"
|
30
|
android:layout_weight="1"
|
31
|
android:orientation="horizontal">
|
32
|
</LinearLayout>
|
33
|
|
34
|
<LinearLayout
|
35
|
android:id="@+id/mainBarRight"
|
36
|
android:layout_width="match_parent"
|
37
|
android:layout_height="match_parent"
|
38
|
android:layout_weight="1"
|
39
|
android:orientation="horizontal">
|
40
|
</LinearLayout>
|
41
|
|
42
|
</LinearLayout>
|
43
|
|
44
|
</LinearLayout>
|