Project

General

Profile

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

examples / src / main / res / layout / multiblurlayout.xml @ bf3b5480

1 3e673c74 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
    <org.distorted.examples.multiblur.MultiblurSurfaceView
8
        android:id="@+id/multiblurSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="1" />
12
13 a935e9db Leszek Koltunski
    <LinearLayout
14
        android:id="@+id/linearLayout3"
15
        android:layout_width="fill_parent"
16
        android:layout_height="wrap_content"
17
        android:gravity="center|fill_horizontal"
18
        android:orientation="horizontal"
19
        android:background="@color/blue">
20
21
        <Spinner
22
            android:layout_width="0dp"
23
            android:layout_height="50dp"
24
            android:layout_weight="0.5"
25
            android:id="@+id/multiblur_spinnerQuality"
26
            />
27
28
        <Spinner
29
            android:layout_width="0dp"
30
            android:layout_height="50dp"
31
            android:layout_weight="0.5"
32
            android:id="@+id/multiblur_spinnerMode"
33
            />
34
    </LinearLayout>
35
36 3e673c74 Leszek Koltunski
    <LinearLayout
37
        android:id="@+id/linearLayout1"
38
        android:layout_width="fill_parent"
39
        android:layout_height="wrap_content"
40
        android:gravity="center|fill_horizontal"
41 febb61ba Leszek Koltunski
        android:orientation="vertical"
42
        android:background="@color/blue"
43 3e673c74 Leszek Koltunski
        android:paddingBottom="10dp"
44
        android:paddingTop="10dp" >
45
46
        <SeekBar
47 fc6f1299 Leszek Koltunski
            android:id="@+id/multiblurDistanceSeek"
48 3e673c74 Leszek Koltunski
            android:layout_weight="1"
49 febb61ba Leszek Koltunski
            android:layout_width="fill_parent"
50
            android:layout_height="0dp"
51 fc6f1299 Leszek Koltunski
            android:paddingLeft="10dp"
52
            android:paddingRight="10dp" />
53
54 febb61ba Leszek Koltunski
    </LinearLayout>
55
56
    <LinearLayout
57
        android:id="@+id/linearLayout2"
58
        android:layout_width="fill_parent"
59
        android:layout_height="wrap_content"
60
        android:gravity="center|fill_horizontal"
61
        android:orientation="vertical"
62
        android:background="@color/red"
63
        android:paddingBottom="10dp"
64
        android:paddingTop="10dp" >
65
66 fc6f1299 Leszek Koltunski
        <SeekBar
67
            android:id="@+id/multiblurRangeSeek"
68
            android:layout_weight="1"
69 febb61ba Leszek Koltunski
            android:layout_width="fill_parent"
70
            android:layout_height="0dp"
71 fc6f1299 Leszek Koltunski
            android:paddingLeft="10dp"
72 3e673c74 Leszek Koltunski
            android:paddingRight="10dp" />
73
74 febb61ba Leszek Koltunski
        <LinearLayout
75
            android:orientation="horizontal"
76
            android:layout_width="match_parent"
77
            android:layout_height="0dp"
78
            android:layout_weight="1">
79
80
            <CheckBox
81
                android:layout_width="wrap_content"
82
                android:layout_height="match_parent"
83
                android:id="@+id/multiblurCheckBox0"
84
                android:onClick="onClick"
85
                android:layout_weight="1"
86
                android:checked="true"/>
87
            <CheckBox
88
                android:layout_width="wrap_content"
89
                android:layout_height="match_parent"
90
                android:id="@+id/multiblurCheckBox1"
91
                android:onClick="onClick"
92
                android:layout_weight="1"
93
                android:checked="false"/>
94
            <CheckBox
95
                android:layout_width="wrap_content"
96
                android:layout_height="match_parent"
97
                android:id="@+id/multiblurCheckBox2"
98
                android:onClick="onClick"
99
                android:layout_weight="1"
100
                android:checked="false"/>
101
            <CheckBox
102
                android:layout_width="wrap_content"
103
                android:layout_height="match_parent"
104
                android:id="@+id/multiblurCheckBox3"
105
                android:onClick="onClick"
106
                android:layout_weight="1"
107
                android:checked="false"/>
108 bf0bc90f Leszek Koltunski
            <CheckBox
109
                android:layout_width="wrap_content"
110
                android:layout_height="match_parent"
111
                android:id="@+id/multiblurCheckBox4"
112
                android:onClick="onClick"
113
                android:layout_weight="1"
114
                android:checked="false"/>
115
            <CheckBox
116
                android:layout_width="wrap_content"
117
                android:layout_height="match_parent"
118
                android:id="@+id/multiblurCheckBox5"
119
                android:onClick="onClick"
120
                android:layout_weight="1"
121
                android:checked="false"/>
122
            <CheckBox
123
                android:layout_width="wrap_content"
124
                android:layout_height="match_parent"
125
                android:id="@+id/multiblurCheckBox6"
126
                android:onClick="onClick"
127
                android:layout_weight="1"
128
                android:checked="false"/>
129
            <CheckBox
130
                android:layout_width="wrap_content"
131
                android:layout_height="match_parent"
132
                android:id="@+id/multiblurCheckBox7"
133
                android:onClick="onClick"
134
                android:layout_weight="1"
135
                android:checked="false"/>
136
137 febb61ba Leszek Koltunski
        </LinearLayout>
138
139 3e673c74 Leszek Koltunski
    </LinearLayout>
140
141
</LinearLayout>