Project

General

Profile

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

examples / src / main / res / layout / vertex3dsink.xml @ e2d8ea1d

1 08f92d82 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
3
            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4
                android:id="@+id/vertex3dRowSink"
5
                android:orientation="horizontal"
6
                android:layout_width="match_parent"
7
                android:layout_height="wrap_content" >
8
9
                <LinearLayout
10
                    android:layout_width="0dp"
11
                    android:layout_height="match_parent"
12
                    android:layout_weight="0.70"
13
                    android:orientation="vertical" >
14
15
                    <TextView
16
                        android:id="@+id/vertex3dsinkText"
17
                        android:layout_width="wrap_content"
18
                        android:layout_height="wrap_content"
19
                        android:layout_marginEnd="5dp"
20
                        android:layout_marginStart="5dp"
21
                        android:layout_marginTop="3dp"
22
                        android:textAppearance="?android:attr/textAppearanceLarge" />
23
24
                    <SeekBar
25
                        android:id="@+id/vertex3dsinkBar1"
26
                        android:layout_width="fill_parent"
27
                        android:layout_height="wrap_content"
28
                        android:layout_gravity="end"
29
                        android:layout_marginEnd="5dp"
30
                        android:layout_marginLeft="5dp"
31
                        android:layout_marginRight="5dp" />
32
33
                </LinearLayout>
34
35
                <Button
36
                    android:id="@+id/vertex3dUpSink"
37
                    android:layout_width="60dp"
38
                    android:layout_height="fill_parent"
39
                    android:onClick="ButtonSink"
40
                    android:text="@string/Up" />
41
42
            </LinearLayout>
43