Project

General

Profile

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

magiccube / src / main / res / layout / main.xml @ 4c0cd600

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 4235de9b Leszek Koltunski
        android:id="@+id/mainTitle"
9 0c52af30 Leszek Koltunski
        android:layout_width="fill_parent"
10 a7a7cc9c Leszek Koltunski
        android:layout_height="50dp"
11 4235de9b Leszek Koltunski
        android:gravity="center"
12
        android:orientation="horizontal">
13 a7a7cc9c Leszek Koltunski
    </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 4c0cd600 Leszek Koltunski
        android:layout_width="match_parent"
23 4235de9b Leszek Koltunski
        android:layout_height="60dp"
24
        android:orientation="horizontal">
25 4c0cd600 Leszek Koltunski
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 f548942f Leszek Koltunski
    </LinearLayout>
43
44 0c52af30 Leszek Koltunski
</LinearLayout>