Project

General

Profile

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

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

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 eb49fa90 Leszek Koltunski
    android:layout_width="match_parent"
5
    android:layout_height="match_parent" >
6 1cb36646 Leszek Koltunski
7
    <org.distorted.main.RubikSurfaceView
8
        android:id="@+id/rubikSurfaceView"
9 eb49fa90 Leszek Koltunski
        android:layout_width="match_parent"
10
        android:layout_height="match_parent"
11 1cb36646 Leszek Koltunski
        android:layout_alignParentStart="true"
12
        android:layout_alignParentTop="true"/>
13 0c52af30 Leszek Koltunski
14
    <LinearLayout
15 e8f6670f Leszek Koltunski
        android:id="@+id/hiddenBar"
16 1cb36646 Leszek Koltunski
        android:layout_alignParentTop="true"
17 eb49fa90 Leszek Koltunski
        android:layout_width="match_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 e8f6670f Leszek Koltunski
    <LinearLayout
25
        android:id="@+id/upperBar"
26
        android:layout_below="@id/hiddenBar"
27 a8576d91 Leszek Koltunski
        android:layout_width="match_parent"
28 e8f6670f Leszek Koltunski
        android:layout_height="0dp"
29
        android:gravity="center"
30
        android:orientation="horizontal"
31
        android:background="@android:color/transparent">
32
    </LinearLayout>
33
34 a7a7cc9c Leszek Koltunski
    <LinearLayout
35 88fb92ba Leszek Koltunski
        android:id="@+id/lowerBar"
36 1cb36646 Leszek Koltunski
        android:layout_alignParentBottom="true"
37 4c0cd600 Leszek Koltunski
        android:layout_width="match_parent"
38 e3c74c0f Leszek Koltunski
        android:layout_height="0dp"
39 3717a94e Leszek Koltunski
        android:orientation="horizontal"
40
        android:background="@android:color/transparent">
41 f548942f Leszek Koltunski
    </LinearLayout>
42
43 1cb36646 Leszek Koltunski
</RelativeLayout>