Project

General

Profile

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

examples / src / main / res / layout / matrix3dscale.xml @ db5d943e

1
<?xml version="1.0" encoding="utf-8"?>
2

    
3
            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4
                android:id="@+id/matrix3dRowScale"
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/matrix3dscaleText"
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/matrix3dscaleBar1"
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
                    <SeekBar
34
                        android:id="@+id/matrix3dscaleBar2"
35
                        android:layout_width="fill_parent"
36
                        android:layout_height="wrap_content"
37
                        android:layout_gravity="end"
38
                        android:layout_marginEnd="5dp"
39
                        android:layout_marginLeft="5dp"
40
                        android:layout_marginRight="5dp" />
41

    
42
                    <SeekBar
43
                        android:id="@+id/matrix3dscaleBar3"
44
                        android:layout_width="fill_parent"
45
                        android:layout_height="wrap_content"
46
                        android:layout_gravity="end"
47
                        android:layout_marginEnd="5dp"
48
                        android:layout_marginLeft="5dp"
49
                        android:layout_marginRight="5dp" />
50

    
51
                </LinearLayout>
52

    
53
                <Button
54
                    android:id="@+id/matrix3dUpScale"
55
                    android:layout_width="60dp"
56
                    android:layout_height="fill_parent"
57
                    android:onClick="ButtonScale"
58
                    android:text="@string/Up" />
59

    
60
            </LinearLayout>
61
           
(13-13/18)