Project

General

Profile

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

examples / src / main / res / layout / fovlayout.xml @ 427ab7bf

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.distortedandroid.examples.fov.FOVSurfaceView
8
        android:id="@+id/surfaceViewFOV"
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="horizontal"
19
        android:paddingBottom="10dp"
20
        android:paddingTop="10dp" >
21

    
22
        <TextView
23
            android:id="@+id/textFOV"
24
            android:layout_width="wrap_content"
25
            android:layout_height="wrap_content"
26
            android:layout_weight="1"
27
            android:paddingLeft="15dp"
28
            android:textAppearance="?android:attr/textAppearanceMedium" />
29

    
30
        <SeekBar
31
            android:id="@+id/seekFOV"
32
            android:layout_width="106dp"
33
            android:layout_height="wrap_content"
34
            android:layout_weight="0.94"
35
            android:paddingLeft="15dp"
36
            android:paddingRight="10dp" />
37

    
38
    </LinearLayout>
39

    
40
</LinearLayout>
(11-11/17)