Project

General

Profile

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

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

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.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
        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="horizontal" >
19

    
20
        <TextView
21
                android:id="@+id/blurText"
22
                android:layout_width="150dp"
23
                android:layout_height="wrap_content"
24
                android:layout_weight="0.5"
25
                android:gravity="center_vertical|center"
26
                android:text="@string/blur"
27
                android:textAppearance="?android:attr/textAppearanceMedium" />
28

    
29
        <SeekBar
30
                android:id="@+id/blurSeek"
31
                android:layout_width="fill_parent"
32
                android:layout_height="wrap_content"
33
                android:layout_weight="1"
34
                android:paddingLeft="15dp"
35
                android:paddingRight="10dp" />
36

    
37
    </LinearLayout>
38

    
39
</LinearLayout>
(2-2/30)