Project

General

Profile

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

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

1 427ab7bf 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 5068fa06 Leszek Koltunski
    <org.distorted.examples.girl.GirlSurfaceView
8 427ab7bf Leszek Koltunski
        android:id="@+id/girlSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="0.85" />
12
13
    <TableLayout
14
        android:layout_width="match_parent"
15
        android:layout_height="wrap_content"
16
        android:paddingLeft="10dp"
17
        android:paddingRight="10dp" >
18
19
        <TableRow
20
            android:id="@+id/tableRow1"
21
            android:layout_width="wrap_content"
22
            android:layout_height="wrap_content"
23
            android:paddingBottom="5dp"
24
            android:paddingTop="5dp" >
25
26
            <TextView
27
                android:id="@+id/girlTextSwing"
28 072682e6 Leszek Koltunski
                android:layout_width="0dp"
29 427ab7bf Leszek Koltunski
                android:layout_height="wrap_content"
30 072682e6 Leszek Koltunski
                android:layout_weight="0.5"
31 427ab7bf Leszek Koltunski
                android:gravity="center_vertical|center"
32
                android:text="@string/swing"
33
                android:textAppearance="?android:attr/textAppearanceMedium" />
34
35
            <SeekBar
36
                android:id="@+id/girlSeekSwing"
37 072682e6 Leszek Koltunski
                android:layout_width="wrap_content"
38 427ab7bf Leszek Koltunski
                android:layout_height="wrap_content"
39
                android:layout_weight="1"
40
                android:paddingLeft="15dp"
41
                android:paddingRight="10dp" />
42
43
        </TableRow>
44
45
        <TableRow
46
            android:id="@+id/tableRow2"
47
            android:layout_width="wrap_content"
48
            android:layout_height="wrap_content"
49
            android:paddingBottom="5dp"
50
            android:paddingTop="5dp" >
51
52
            <TextView
53
                android:id="@+id/girlTextSize"
54 072682e6 Leszek Koltunski
                android:layout_width="0dp"
55 427ab7bf Leszek Koltunski
                android:layout_height="wrap_content"
56 072682e6 Leszek Koltunski
                android:layout_weight="0.5"
57 427ab7bf Leszek Koltunski
                android:gravity="center_vertical|center"
58
                android:text="@string/size"
59
                android:textAppearance="?android:attr/textAppearanceMedium" />
60
61
            <SeekBar
62
                android:id="@+id/girlSeekSize"
63 072682e6 Leszek Koltunski
                android:layout_width="wrap_content"
64 427ab7bf Leszek Koltunski
                android:layout_height="wrap_content"
65
                android:layout_weight="1"
66
                android:paddingLeft="15dp"
67
                android:paddingRight="10dp" />
68
69
        </TableRow>
70
71
        <TableRow
72
            android:id="@+id/tableRow3"
73
            android:layout_width="wrap_content"
74
            android:layout_height="wrap_content"
75
            android:paddingBottom="5dp"
76
            android:paddingTop="5dp" >
77
78
            <TextView
79
                android:id="@+id/girlTextHips"
80 072682e6 Leszek Koltunski
                android:layout_width="0dp"
81 427ab7bf Leszek Koltunski
                android:layout_height="wrap_content"
82 072682e6 Leszek Koltunski
                android:layout_weight="0.5"
83 427ab7bf Leszek Koltunski
                android:gravity="center_vertical|center"
84
                android:text="@string/hips"
85
                android:textAppearance="?android:attr/textAppearanceMedium" />
86
87
            <SeekBar
88
                android:id="@+id/girlSeekHips"
89 072682e6 Leszek Koltunski
                android:layout_width="wrap_content"
90 427ab7bf Leszek Koltunski
                android:layout_height="wrap_content"
91
                android:layout_weight="1"
92
                android:paddingLeft="15dp"
93
                android:paddingRight="10dp" />
94
95
        </TableRow>
96
    </TableLayout>
97
98
</LinearLayout>