Project

General

Profile

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

magiccube / src / main / res / layout / config.xml @ 74d088c3

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:id="@+id/mainLayout"
4
    android:layout_width="match_parent"
5
    android:layout_height="match_parent"
6
    android:orientation="vertical">
7

    
8
    <org.distorted.config.ConfigSurfaceView
9
        android:id="@+id/configSurfaceView"
10
        android:layout_width="match_parent"
11
        android:layout_height="0dp"
12
        android:layout_weight="1.0"/>
13

    
14
    <LinearLayout
15
        android:id="@+id/configLayout"
16
        android:layout_width="match_parent"
17
        android:layout_height="0dp"
18
        android:layout_weight="1.0"
19
        android:layout_marginLeft="0dp"
20
        android:layout_marginRight="0dp"
21
        android:background="@color/light_grey"
22
        android:orientation="vertical" >
23
    </LinearLayout>
24

    
25
    <LinearLayout
26
        android:id="@+id/lowerBar"
27
        android:layout_width="match_parent"
28
        android:layout_height="100dp"
29
        android:layout_gravity="end"
30
        android:orientation="horizontal"
31
        android:background="@color/light_grey">
32
    </LinearLayout>
33

    
34
</LinearLayout>
(2-2/32)