Project

General

Profile

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

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

1
<?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
    <LinearLayout
14
        android:id="@+id/linearLayout1"
15
        android:layout_width="fill_parent"
16
        android:layout_height="wrap_content"
17
        android:gravity="center|fill_horizontal"
18
        android:orientation="vertical"
19
        android:background="@color/blue"
20
        android:paddingBottom="10dp"
21
        android:paddingTop="10dp" >
22

    
23
        <SeekBar
24
            android:id="@+id/multiblurDistanceSeek"
25
            android:layout_weight="1"
26
            android:layout_width="fill_parent"
27
            android:layout_height="0dp"
28
            android:paddingLeft="10dp"
29
            android:paddingRight="10dp" />
30

    
31
    </LinearLayout>
32

    
33
    <LinearLayout
34
        android:id="@+id/linearLayout2"
35
        android:layout_width="fill_parent"
36
        android:layout_height="wrap_content"
37
        android:gravity="center|fill_horizontal"
38
        android:orientation="vertical"
39
        android:background="@color/red"
40
        android:paddingBottom="10dp"
41
        android:paddingTop="10dp" >
42

    
43
        <SeekBar
44
            android:id="@+id/multiblurRangeSeek"
45
            android:layout_weight="1"
46
            android:layout_width="fill_parent"
47
            android:layout_height="0dp"
48
            android:paddingLeft="10dp"
49
            android:paddingRight="10dp" />
50

    
51
        <LinearLayout
52
            android:orientation="horizontal"
53
            android:layout_width="match_parent"
54
            android:layout_height="0dp"
55
            android:layout_weight="1">
56

    
57
            <CheckBox
58
                android:layout_width="wrap_content"
59
                android:layout_height="match_parent"
60
                android:id="@+id/multiblurCheckBox0"
61
                android:onClick="onClick"
62
                android:layout_weight="1"
63
                android:checked="true"/>
64
            <CheckBox
65
                android:layout_width="wrap_content"
66
                android:layout_height="match_parent"
67
                android:id="@+id/multiblurCheckBox1"
68
                android:onClick="onClick"
69
                android:layout_weight="1"
70
                android:checked="false"/>
71
            <CheckBox
72
                android:layout_width="wrap_content"
73
                android:layout_height="match_parent"
74
                android:id="@+id/multiblurCheckBox2"
75
                android:onClick="onClick"
76
                android:layout_weight="1"
77
                android:checked="false"/>
78
            <CheckBox
79
                android:layout_width="wrap_content"
80
                android:layout_height="match_parent"
81
                android:id="@+id/multiblurCheckBox3"
82
                android:onClick="onClick"
83
                android:layout_weight="1"
84
                android:checked="false"/>
85
             <CheckBox
86
                 android:layout_width="wrap_content"
87
                 android:layout_height="match_parent"
88
                 android:id="@+id/multiblurCheckBox4"
89
                 android:onClick="onClick"
90
                 android:layout_weight="1"
91
                 android:checked="false"/>
92
             <CheckBox
93
                 android:layout_width="wrap_content"
94
                 android:layout_height="match_parent"
95
                 android:id="@+id/multiblurCheckBox5"
96
                 android:onClick="onClick"
97
                 android:layout_weight="1"
98
                 android:checked="false"/>
99
             <CheckBox
100
                 android:layout_width="wrap_content"
101
                 android:layout_height="match_parent"
102
                 android:id="@+id/multiblurCheckBox6"
103
                 android:onClick="onClick"
104
                 android:layout_weight="1"
105
                 android:checked="false"/>
106
             <CheckBox
107
                 android:layout_width="wrap_content"
108
                 android:layout_height="match_parent"
109
                 android:id="@+id/multiblurCheckBox7"
110
                 android:onClick="onClick"
111
                 android:layout_weight="1"
112
                 android:checked="false"/>
113
        </LinearLayout>
114

    
115
    </LinearLayout>
116

    
117
</LinearLayout>
(24-24/31)