Project

General

Profile

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

magiccube / src / main / res / layout / config.xml @ 8bf8fe70

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"/>
13

    
14
    <LinearLayout
15
        android:layout_width="match_parent"
16
        android:layout_height="0dp"
17
        android:layout_weight="1"
18
        android:orientation="horizontal"
19
        android:background="@color/light_grey">
20

    
21
        <ScrollView
22
           android:id="@+id/configScroll"
23
           android:layout_width="match_parent"
24
           android:layout_height="match_parent"
25
           android:layout_marginLeft="10dp"
26
           android:layout_marginRight="10dp"
27
           android:background="@color/grey">
28

    
29
           <LinearLayout
30
               android:id="@+id/configLayout"
31
               android:layout_width="match_parent"
32
               android:layout_height="wrap_content"
33
               android:layout_marginLeft="0dp"
34
               android:layout_marginRight="0dp"
35
               android:background="@color/grey"
36
               android:orientation="vertical" >
37
          </LinearLayout>
38

    
39
        </ScrollView>
40

    
41
    </LinearLayout>
42

    
43
    <LinearLayout
44
        android:id="@+id/lowerBar"
45
        android:layout_width="match_parent"
46
        android:layout_height="100dp"
47
        android:layout_gravity="end"
48
        android:orientation="horizontal"
49
        android:background="@color/light_grey">
50
    </LinearLayout>
51

    
52
</LinearLayout>
(2-2/29)