Project

General

Profile

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

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

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/upperBar"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="0.12"
12
        android:gravity="center"
13
        android:orientation="horizontal"
14
        android:background="@android:color/transparent">
15
    </LinearLayout>
16

    
17
    <org.distorted.main.RubikSurfaceView
18
        android:id="@+id/rubikSurfaceView"
19
        android:layout_width="fill_parent"
20
        android:layout_height="0dp"
21
        android:layout_weight="1" />
22

    
23
    <LinearLayout
24
        android:id="@+id/lowerBar"
25
        android:layout_width="match_parent"
26
        android:layout_height="0dp"
27
        android:layout_weight="0.12"
28
        android:orientation="horizontal"
29
        android:background="@android:color/transparent">
30
    </LinearLayout>
31

    
32
</LinearLayout>
(18-18/23)