Project

General

Profile

Download (904 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / main.xml @ e41e7dc3

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 4235de9b Leszek Koltunski
        android:id="@+id/mainBar"
23 f548942f Leszek Koltunski
        android:layout_width="fill_parent"
24 4235de9b Leszek Koltunski
        android:layout_height="60dp"
25
        android:gravity="right"
26
        android:orientation="horizontal">
27 f548942f Leszek Koltunski
    </LinearLayout>
28
29 0c52af30 Leszek Koltunski
</LinearLayout>