Project

General

Profile

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

examples / src / main / res / layout / flatblurlayout.xml @ 0e65f4da

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.flatblur.FlatBlurSurfaceView
8
        android:id="@+id/flatblurSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="1" />
12

    
13
    <LinearLayout
14
        android:orientation="horizontal"
15
        android:layout_width="match_parent"
16
        android:layout_height="wrap_content"
17
        android:gravity="center">
18

    
19
        <CheckBox
20
                android:id="@+id/flatblurEnableBlur"
21
                android:layout_width="0dp"
22
                android:layout_height="match_parent"
23
                android:layout_weight="1"
24
                android:onClick="enableBlur"
25
                android:checked="false"/>
26

    
27
        <SeekBar
28
                android:id="@+id/flatblurBlurStrength"
29
                android:layout_width="0dp"
30
                android:layout_height="match_parent"
31
                android:layout_weight="2"
32
                android:layout_gravity="center_vertical"
33
                android:layout_margin="5dp"/>
34

    
35
    </LinearLayout>
36

    
37
</LinearLayout>
(26-26/53)