Project

General

Profile

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

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

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