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/mainTitle"
|
9
|
android:layout_width="fill_parent"
|
10
|
android:layout_height="50dp"
|
11
|
android:gravity="center"
|
12
|
android:orientation="horizontal">
|
13
|
</LinearLayout>
|
14
|
|
15
|
<org.distorted.magic.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:id="@+id/mainBar"
|
23
|
android:layout_width="fill_parent"
|
24
|
android:layout_height="60dp"
|
25
|
android:gravity="right"
|
26
|
android:orientation="horizontal">
|
27
|
</LinearLayout>
|
28
|
|
29
|
</LinearLayout>
|