Project

General

Profile

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

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

1 0c52af30 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2 1cb36646 Leszek Koltunski
<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:id="@+id/relativeLayout"
4 0c52af30 Leszek Koltunski
    android:layout_width="fill_parent"
5 1cb36646 Leszek Koltunski
    android:layout_height="fill_parent" >
6
7
    <org.distorted.main.RubikSurfaceView
8
        android:id="@+id/rubikSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="fill_parent"
11
        android:layout_alignParentStart="true"
12
        android:layout_alignParentTop="true"/>
13 0c52af30 Leszek Koltunski
14
    <LinearLayout
15 7289fd6c Leszek Koltunski
        android:id="@+id/upperBar"
16 1cb36646 Leszek Koltunski
        android:layout_alignParentTop="true"
17 0c52af30 Leszek Koltunski
        android:layout_width="fill_parent"
18 e3c74c0f Leszek Koltunski
        android:layout_height="0dp"
19 4235de9b Leszek Koltunski
        android:gravity="center"
20 3717a94e Leszek Koltunski
        android:orientation="horizontal"
21
        android:background="@android:color/transparent">
22 a7a7cc9c Leszek Koltunski
    </LinearLayout>
23
24
    <LinearLayout
25 88fb92ba Leszek Koltunski
        android:id="@+id/lowerBar"
26 1cb36646 Leszek Koltunski
        android:layout_alignParentBottom="true"
27 4c0cd600 Leszek Koltunski
        android:layout_width="match_parent"
28 e3c74c0f Leszek Koltunski
        android:layout_height="0dp"
29 3717a94e Leszek Koltunski
        android:orientation="horizontal"
30
        android:background="@android:color/transparent">
31 f548942f Leszek Koltunski
    </LinearLayout>
32
33 1cb36646 Leszek Koltunski
</RelativeLayout>