Project

General

Profile

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

magiccube / src / main / res / layout / dialog_settings.xml @ af0710b6

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

    
8
    <LinearLayout
9
        android:layout_width="fill_parent"
10
        android:layout_height="fill_parent"
11
        android:gravity="center|fill_horizontal"
12
        android:layout_marginLeft="10dp"
13
        android:layout_marginRight="10dp"
14
        android:background="@color/grey"
15
        android:orientation="vertical">
16

    
17
        <LinearLayout
18
            android:layout_width="fill_parent"
19
            android:layout_height="wrap_content"
20
            android:gravity="center|fill_horizontal"
21
            android:layout_marginLeft="10dp"
22
            android:layout_marginRight="10dp"
23
            android:layout_marginTop="10dp"
24
            android:layout_marginBottom="5dp"
25
            android:orientation="horizontal">
26

    
27
            <TextView
28
               android:id="@+id/bandaged_text_depth"
29
               android:layout_width="0dp"
30
               android:layout_height="wrap_content"
31
               android:layout_weight="0.5"
32
               android:gravity="start"
33
               android:textSize="24sp"
34
               android:text="@string/depth"
35
               android:layout_marginLeft="10dp"
36
               android:layout_marginRight="10dp"/>
37

    
38
            <Spinner
39
               android:id="@+id/bandaged_spinner_scramble"
40
               android:gravity="end"
41
               android:layout_width="0dp"
42
               android:layout_height="wrap_content"
43
               android:layout_weight="0.5"/>
44

    
45
        </LinearLayout>
46

    
47
        <LinearLayout
48
        android:layout_width="fill_parent"
49
        android:layout_height="wrap_content"
50
        android:gravity="center|fill_horizontal"
51
        android:layout_marginLeft="10dp"
52
        android:layout_marginRight="10dp"
53
        android:layout_marginTop="5dp"
54
        android:layout_marginBottom="10dp"
55
        android:orientation="horizontal">
56

    
57
            <TextView
58
               android:id="@+id/bandaged_text_animation"
59
               android:layout_width="0dp"
60
               android:layout_height="wrap_content"
61
               android:layout_weight="0.5"
62
               android:gravity="start"
63
               android:textSize="24sp"
64
               android:text="@string/animation"
65
               android:layout_marginTop="10dp"
66
               android:layout_marginLeft="10dp"
67
               android:layout_marginRight="10dp"
68
               android:layout_marginBottom="10dp"/>
69

    
70
            <Spinner
71
               android:id="@+id/bandaged_spinner_animation"
72
               android:gravity="end"
73
               android:layout_width="0dp"
74
               android:layout_height="wrap_content"
75
               android:layout_weight="0.5"/>
76

    
77
        </LinearLayout>
78

    
79
    </LinearLayout>
80
</LinearLayout>
(21-21/40)