Project

General

Profile

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

examples / src / main / res / layout / blurlayout.xml @ bf2e8f97

1 43bda3db 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.blur.BlurSurfaceView
8
        android:id="@+id/blurSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="1" />
12
13
    <LinearLayout
14 bf2e8f97 Leszek Koltunski
        android:layout_width="fill_parent"
15
        android:layout_height="wrap_content"
16
        android:gravity="center|fill_horizontal"
17
        android:orientation="horizontal" >
18
19
        <TextView
20
                android:id="@+id/haloText"
21
                android:layout_width="150dp"
22
                android:layout_height="wrap_content"
23
                android:layout_weight="0.5"
24
                android:gravity="center_vertical|center"
25
                android:text="@string/blur"
26
                android:textAppearance="?android:attr/textAppearanceMedium" />
27
28
        <SeekBar
29
                android:id="@+id/haloSeek"
30
                android:layout_width="fill_parent"
31
                android:layout_height="wrap_content"
32
                android:layout_weight="1"
33
                android:paddingLeft="15dp"
34
                android:paddingRight="10dp" />
35
36
    </LinearLayout>
37
38
    <LinearLayout
39 43bda3db Leszek Koltunski
        android:layout_width="fill_parent"
40
        android:layout_height="wrap_content"
41
        android:gravity="center|fill_horizontal"
42
        android:orientation="horizontal" >
43
44
        <TextView
45
                android:id="@+id/blurText"
46
                android:layout_width="150dp"
47
                android:layout_height="wrap_content"
48
                android:layout_weight="0.5"
49
                android:gravity="center_vertical|center"
50
                android:text="@string/blur"
51
                android:textAppearance="?android:attr/textAppearanceMedium" />
52
53
        <SeekBar
54
                android:id="@+id/blurSeek"
55
                android:layout_width="fill_parent"
56
                android:layout_height="wrap_content"
57
                android:layout_weight="1"
58
                android:paddingLeft="15dp"
59
                android:paddingRight="10dp" />
60
61
    </LinearLayout>
62
63 bf2e8f97 Leszek Koltunski
    <LinearLayout
64
        android:layout_width="fill_parent"
65
        android:layout_height="wrap_content"
66
        android:gravity="center|fill_horizontal"
67
        android:orientation="horizontal" >
68
69
        <TextView
70
                android:id="@+id/moveText"
71
                android:layout_width="150dp"
72
                android:layout_height="wrap_content"
73
                android:layout_weight="0.5"
74
                android:gravity="center_vertical|center"
75
                android:text="@string/blur"
76
                android:textAppearance="?android:attr/textAppearanceMedium" />
77
78
        <SeekBar
79
                android:id="@+id/moveSeek"
80
                android:layout_width="fill_parent"
81
                android:layout_height="wrap_content"
82
                android:layout_weight="1"
83
                android:paddingLeft="15dp"
84
                android:paddingRight="10dp" />
85
86
    </LinearLayout>
87
88 43bda3db Leszek Koltunski
</LinearLayout>