Project

General

Profile

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

magiccube / src / main / res / layout / config.xml @ 6bce6217

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:background="@color/light_grey"
7
    android:orientation="vertical">
8

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

    
15
    <LinearLayout
16
        android:id="@+id/configLayout"
17
        android:layout_width="match_parent"
18
        android:layout_height="0dp"
19
        android:layout_weight="1.0"
20
        android:layout_marginLeft="5dp"
21
        android:layout_marginRight="5dp"
22
        android:layout_marginBottom="5dp"
23
        android:paddingLeft="5dp"
24
        android:paddingRight="5dp"
25
        android:background="@color/grey"
26
        android:orientation="vertical" >
27

    
28
        <TextView
29
            android:id="@+id/configTextStickers"
30
            android:layout_width="fill_parent"
31
            android:layout_height="wrap_content"
32
            android:gravity="center"
33
            android:textSize="26sp"
34
            android:text="@string/config_stickers"/>
35

    
36
    </LinearLayout>
37

    
38
    <LinearLayout
39
        android:id="@+id/lowerBar"
40
        android:layout_width="match_parent"
41
        android:layout_height="100dp"
42
        android:layout_gravity="end"
43
        android:orientation="horizontal"
44
        android:background="@color/light_grey">
45
    </LinearLayout>
46

    
47
</LinearLayout>
(4-4/56)