Project

General

Profile

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

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

1
<?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

    
10
                <LinearLayout
11
                    android:layout_width="0dp"
12
                    android:layout_height="match_parent"
13
                    android:layout_weight="0.70"
14
                    android:orientation="vertical" >
15

    
16
                    <TextView
17
                        android:id="@+id/vertex3dsinkText"
18
                        android:layout_width="wrap_content"
19
                        android:layout_height="wrap_content"
20
                        android:layout_marginEnd="5dp"
21
                        android:layout_marginStart="5dp"
22
                        android:layout_marginTop="3dp"
23
                        />
24

    
25
                    <SeekBar
26
                        android:id="@+id/vertex3dsinkBar1"
27
                        android:layout_width="fill_parent"
28
                        android:layout_height="wrap_content"
29
                        android:layout_gravity="end"
30
                        android:layout_marginEnd="5dp"
31
                        android:layout_marginLeft="5dp"
32
                        android:layout_marginRight="5dp" />
33

    
34
                </LinearLayout>
35

    
36
                <Button
37
                    android:id="@+id/vertex3dUpSink"
38
                    android:layout_width="60dp"
39
                    android:layout_height="fill_parent"
40
                    android:onClick="ButtonSink"
41
                    android:text="@string/Up" />
42

    
43
            </LinearLayout>
44
           
(22-22/23)