Project

General

Profile

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

examples / src / main / res / layout / effect2d.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/effect2dLayout"
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/button2dLayout"
10
              android:layout_width="match_parent"
11
              android:layout_height="match_parent"
12
              android:orientation="horizontal">
13

    
14
                <TextView
15
                    android:id="@+id/effect2dText"
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/button2dRemove"
28
                    android:layout_weight="0.2"
29
                    android:layout_marginTop="3dp"
30
                    android:onClick="remove"/>
31
        </LinearLayout>
32

    
33
        <SeekBar
34
            android:id="@+id/effect2dbar1"
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/effect2dbar2"
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
</LinearLayout>
(10-10/30)