Project

General

Profile

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

examples / src / main / res / layout / objecttreelayout.xml @ bf3b5480

1 1746198f 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 5ceea148 Leszek Koltunski
    <org.distorted.examples.objecttree.ObjectTreeSurfaceView
8
        android:id="@+id/objecttreeSurfaceView"
9 1746198f Leszek Koltunski
        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 bf0bc90f Leszek Koltunski
        android:orientation="vertical">
19 1746198f Leszek Koltunski
20
        <RadioGroup
21
            android:id="@+id/radioGroup1"
22
            android:layout_width="match_parent"
23
            android:layout_height="wrap_content"
24 bf0bc90f Leszek Koltunski
            android:orientation="horizontal">
25
26 1746198f Leszek Koltunski
            <RadioButton
27 aedd9013 leszek
                android:id="@+id/depthYesButton"
28 1746198f Leszek Koltunski
                android:layout_width="wrap_content"
29
                android:layout_height="wrap_content"
30 6eb5eec2 Leszek Koltunski
                android:checked="true"
31 1746198f Leszek Koltunski
                android:onClick="DepthYes"
32 bf0bc90f Leszek Koltunski
                android:text="@string/DepthYes"/>
33 1746198f Leszek Koltunski
34
            <RadioButton
35 aedd9013 leszek
                android:id="@+id/depthNoButton"
36 1746198f Leszek Koltunski
                android:layout_width="wrap_content"
37
                android:layout_height="wrap_content"
38
                android:onClick="DepthNo"
39 bf0bc90f Leszek Koltunski
                android:text="@string/DepthNo"/>
40 1746198f Leszek Koltunski
41
        </RadioGroup>
42
43
    </LinearLayout>
44
45
</LinearLayout>