Project

General

Profile

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

examples / src / main / res / layout / windlayout.xml @ af662543

1 14122c52 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.wind.WindSurfaceView
8
        android:id="@+id/windSurfaceView"
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/windText"
24 072682e6 Leszek Koltunski
            android:layout_width="0dp"
25 14122c52 Leszek Koltunski
            android:layout_height="wrap_content"
26 072682e6 Leszek Koltunski
            android:layout_weight="0.5"
27 14122c52 Leszek Koltunski
            android:paddingLeft="15dp"
28
            android:textAppearance="?android:attr/textAppearanceMedium" />
29
30
        <SeekBar
31
            android:id="@+id/windSeek"
32 072682e6 Leszek Koltunski
            android:layout_weight="1"
33
            android:layout_width="wrap_content"
34 14122c52 Leszek Koltunski
            android:layout_height="wrap_content"
35
            android:paddingLeft="15dp"
36
            android:paddingRight="10dp" />
37
38
    </LinearLayout>
39
40
</LinearLayout>