Project

General

Profile

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

examples / src / main / res / layout / flatblurlayout.xml @ 36532c7f

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
        <Button
20
                android:id="@+id/flatblurButton1"
21
                android:layout_width="0dp"
22
                android:layout_height="match_parent"
23
                android:layout_weight="1"
24
                android:onClick="button1"
25
                android:checked="false"/>
26
        <Button
27
                android:id="@+id/flatblurButton2"
28
                android:layout_width="0dp"
29
                android:layout_height="match_parent"
30
                android:layout_weight="1"
31
                android:onClick="button2"
32
                android:checked="false"/>
33

    
34
    </LinearLayout>
35

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