Project

General

Profile

Download (5.73 KB) Statistics
| Branch: | Revision:

examples / src / main / res / layout / effectqueuelayout.xml @ af662543

1 f9afbbf3 Leszek Koltunski
<?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 758303a3 Leszek Koltunski
    <org.distorted.examples.effectqueue.EffectQueueSurfaceView
8 af225332 Leszek Koltunski
        android:id="@+id/effects2dSurfaceView"
9 f9afbbf3 Leszek Koltunski
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="1" />
12
13 af225332 Leszek Koltunski
    <ScrollView
14
        android:id="@+id/effects2dscrollView"
15
        android:layout_width="match_parent"
16
        android:layout_height="0dp"
17
        android:layout_weight="0.82" >
18
19 f9afbbf3 Leszek Koltunski
    <LinearLayout
20
        android:id="@+id/linearLayout1"
21
        android:layout_width="fill_parent"
22
        android:layout_height="wrap_content"
23
        android:layout_weight="0.3"
24
        android:gravity="fill_horizontal|top"
25
        android:orientation="vertical"
26
        android:weightSum="1">
27
28
        <TableLayout
29
            android:layout_width="fill_parent"
30
            android:layout_height="wrap_content"
31 af225332 Leszek Koltunski
            android:paddingTop="2dp"
32
            android:paddingBottom="2dp"
33
            android:stretchColumns="0,1,2"
34 f9afbbf3 Leszek Koltunski
            android:paddingLeft="10dp"
35
            android:paddingRight="10dp">
36
37 50ac40a6 Leszek Koltunski
            <TableRow
38
                android:layout_width="match_parent"
39
                android:layout_height="match_parent">
40
41
                <TextView
42
                    android:layout_width="wrap_content"
43
                    android:layout_height="wrap_content"
44
                    android:text="@string/add"
45
                    android:id="@+id/textView"
46
                    android:layout_gravity="center_vertical"
47
                    android:layout_span="2"
48
                    android:layout_marginLeft="8dp"/>
49
50
                <Spinner
51
                    android:layout_width="fill_parent"
52
                    android:layout_height="40dp"
53
                    android:id="@+id/effects2d_spinnerAdd"
54
                    />
55
            </TableRow>
56
57 f9afbbf3 Leszek Koltunski
            <TableRow
58
                android:layout_width="wrap_content"
59
                android:layout_height="wrap_content"
60
                android:layout_gravity="center"
61
                android:orientation="vertical">
62
63 af225332 Leszek Koltunski
                <Button
64
                    android:layout_width="wrap_content"
65
                    android:layout_height="40dp"
66
                    android:text="@string/removebut"
67
                    android:id="@+id/effects2dRemoveID"
68
                    android:onClick="removeByID"/>
69
70 f9afbbf3 Leszek Koltunski
                <TextView
71
                    android:layout_width="match_parent"
72
                    android:layout_height="wrap_content"
73
                    android:text="@string/id"
74
                    android:id="@+id/textView3"
75
                    android:layout_gravity="center"/>
76
77
                <Spinner
78
                    android:layout_width="fill_parent"
79
                    android:layout_height="40dp"
80
                    android:id="@+id/effects2d_spinnerID"/>
81
            </TableRow>
82
83
            <TableRow
84
                android:layout_width="wrap_content"
85
                android:layout_height="wrap_content"
86
                android:layout_gravity="center">
87
88 af225332 Leszek Koltunski
                <Button
89
                    android:layout_width="wrap_content"
90
                    android:layout_height="40dp"
91
                    android:text="@string/removebut"
92
                    android:id="@+id/effects2dRemoveName"
93
                    android:onClick="removeByName"/>
94
95 f9afbbf3 Leszek Koltunski
                <TextView
96
                    android:layout_width="match_parent"
97
                    android:layout_height="wrap_content"
98
                    android:text="@string/name"
99
                    android:id="@+id/textView4"
100
                    android:layout_gravity="center"/>
101
102
                <Spinner
103
                    android:layout_width="fill_parent"
104
                    android:layout_height="40dp"
105
                    android:id="@+id/effects2d_spinnerName"/>
106
            </TableRow>
107
108
            <TableRow
109
                android:layout_width="wrap_content"
110
                android:layout_height="wrap_content"
111
                android:layout_gravity="center">
112
113 af225332 Leszek Koltunski
                <Button
114
                    android:layout_width="wrap_content"
115
                    android:layout_height="40dp"
116
                    android:text="@string/removebut"
117
                    android:id="@+id/effects2dRemoveType"
118
                    android:onClick="removeByType"/>
119
120 f9afbbf3 Leszek Koltunski
                <TextView
121
                    android:layout_width="wrap_content"
122
                    android:layout_height="wrap_content"
123
                    android:text="@string/type"
124
                    android:id="@+id/textView5"
125
                    android:layout_gravity="center"/>
126
127
                <Spinner
128
                    android:layout_width="fill_parent"
129
                    android:layout_height="40dp"
130
                    android:id="@+id/effects2d_spinnerType"/>
131
            </TableRow>
132
133
        </TableLayout>
134
        <View
135
            android:layout_height="2dip"
136 50ac40a6 Leszek Koltunski
            android:background="#333333"
137 f9afbbf3 Leszek Koltunski
            android:layout_width="match_parent"
138
            />
139
140
        <TextView
141
            android:layout_width="wrap_content"
142
            android:layout_height="wrap_content"
143
            android:text="@string/list"
144
            android:id="@+id/textView6"
145
            android:layout_gravity="center_horizontal"/>
146 e763f1ee Leszek Koltunski
147
        <TableLayout
148
            android:id="@+id/effects2dTableList"
149
            android:layout_width="match_parent"
150
            android:layout_height="match_parent"
151
            android:paddingTop="2dp"
152
            android:paddingBottom="2dp"
153
            android:stretchColumns="0,1,2,3"
154
            android:paddingLeft="10dp"
155
            android:paddingRight="10dp">
156
        </TableLayout>
157
158 f9afbbf3 Leszek Koltunski
    </LinearLayout>
159 e763f1ee Leszek Koltunski
160 af225332 Leszek Koltunski
    </ScrollView>
161 f9afbbf3 Leszek Koltunski
</LinearLayout>