Project

General

Profile

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

examples / src / main / res / layout / mirrorlayout.xml @ 03a2fd30

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.mirror.MirrorSurfaceView
8
        android:id="@+id/mirrorSurfaceView"
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
        <SeekBar
23
            android:id="@+id/mirrorSeek"
24
            android:layout_weight="1"
25
            android:layout_width="wrap_content"
26
            android:layout_height="wrap_content"
27
            android:paddingLeft="10dp"
28
            android:paddingRight="10dp" />
29

    
30
    </LinearLayout>
31

    
32
</LinearLayout>
(20-20/28)