Project

General

Profile

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

examples / src / main / res / layout / fbolayout.xml @ 1746198f

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.fbo.FBOSurfaceView
8
        android:id="@+id/fboSurfaceView"
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="vertical" >
19

    
20
        <RadioGroup
21
            android:id="@+id/radioGroup1"
22
            android:layout_width="match_parent"
23
            android:layout_height="wrap_content"
24
            android:orientation="horizontal" >
25
			
26
            <RadioButton
27
                android:id="@+id/deformDistortButton"
28
                android:layout_width="wrap_content"
29
                android:layout_height="wrap_content"
30
                android:onClick="DepthYes"
31
                android:text="@string/DepthYes" />
32

    
33
            <RadioButton
34
                android:id="@+id/deformDeformButton"
35
                android:layout_width="wrap_content"
36
                android:layout_height="wrap_content"
37
                android:checked="true"
38
                android:onClick="DepthNo"
39
                android:text="@string/DepthNo" />
40

    
41
        </RadioGroup>
42

    
43
    </LinearLayout>
44

    
45
</LinearLayout>
(17-17/29)