Project

General

Profile

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

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

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
              android:id="@+id/effect4dLayout"
4
              android:layout_width="match_parent"
5
              android:layout_height="wrap_content"
6
              android:orientation="vertical">
7

    
8
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9
              android:id="@+id/button4dLayout"
10
              android:layout_width="match_parent"
11
              android:layout_height="match_parent"
12
              android:orientation="horizontal">
13

    
14
                <TextView
15
                    android:id="@+id/effect4dText"
16
                    android:layout_width="wrap_content"
17
                    android:layout_height="wrap_content"
18
                    android:layout_marginEnd="5dp"
19
                    android:layout_marginStart="5dp"
20
                    android:layout_marginTop="3dp"
21
                    android:layout_weight="1"/>
22

    
23
                <Button
24
                    android:text="@string/removebut"
25
                    android:layout_width="wrap_content"
26
                    android:layout_height="wrap_content"
27
                    android:id="@+id/button4dRemove"
28
                    android:layout_weight="0.2"
29
                    android:layout_marginTop="3dp"
30
                    android:onClick="remove"/>
31
        </LinearLayout>
32

    
33
        <SeekBar
34
            android:id="@+id/effect4dbar1"
35
            android:layout_width="fill_parent"
36
            android:layout_height="wrap_content"
37
            android:layout_marginEnd="5dp"
38
            android:layout_marginLeft="5dp"
39
            android:layout_marginRight="5dp" />
40

    
41
        <SeekBar
42
            android:id="@+id/effect4dbar2"
43
            android:layout_width="fill_parent"
44
            android:layout_height="wrap_content"
45
            android:layout_marginEnd="5dp"
46
            android:layout_marginLeft="5dp"
47
            android:layout_marginRight="5dp" />
48

    
49
        <SeekBar
50
            android:id="@+id/effect4dbar3"
51
            android:layout_width="fill_parent"
52
            android:layout_height="wrap_content"
53
            android:layout_marginEnd="5dp"
54
            android:layout_marginLeft="5dp"
55
            android:layout_marginRight="5dp" />
56

    
57
        <SeekBar
58
            android:id="@+id/effect4dbar4"
59
            android:layout_width="fill_parent"
60
            android:layout_height="wrap_content"
61
            android:layout_marginEnd="5dp"
62
            android:layout_marginLeft="5dp"
63
            android:layout_marginRight="5dp" />
64

    
65
</LinearLayout>
(12-12/30)