Project

General

Profile

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

examples / src / main / res / layout / effectregion.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/effectRegionLayout"
4
              android:layout_width="match_parent"
5
              android:layout_height="wrap_content"
6
              android:orientation="vertical">
7

    
8
    <TextView
9
        android:id="@+id/effectRegionText"
10
        android:layout_width="wrap_content"
11
        android:layout_height="wrap_content"
12
        android:layout_marginEnd="5dp"
13
        android:layout_marginStart="5dp"
14
        android:layout_marginTop="3dp"
15
        />
16

    
17
    <LinearLayout
18
        android:orientation="horizontal"
19
        android:layout_width="match_parent"
20
        android:layout_height="match_parent">
21

    
22
        <SeekBar
23
            android:id="@+id/effectRegionBarX"
24
            android:layout_width="wrap_content"
25
            android:layout_height="wrap_content"
26
            android:layout_marginEnd="5dp"
27
            android:layout_marginLeft="5dp"
28
            android:layout_marginRight="5dp"
29
            android:layout_weight="0.5"/>
30

    
31
        <SeekBar
32
            android:id="@+id/effectRegionBarY"
33
            android:layout_width="wrap_content"
34
            android:layout_height="wrap_content"
35
            android:layout_marginEnd="5dp"
36
            android:layout_marginLeft="5dp"
37
            android:layout_marginRight="5dp"
38
            android:layout_weight="0.5"/>
39

    
40
    </LinearLayout>
41

    
42
    <LinearLayout
43
        android:orientation="horizontal"
44
        android:layout_width="match_parent"
45
        android:layout_height="match_parent">
46

    
47
        <SeekBar
48
            android:id="@+id/effectRegionBarRX"
49
            android:layout_width="wrap_content"
50
            android:layout_height="wrap_content"
51
            android:layout_marginEnd="5dp"
52
            android:layout_marginLeft="5dp"
53
            android:layout_marginRight="5dp"
54
            android:layout_weight="0.5"/>
55

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

    
65
    </LinearLayout>
66

    
67
    <View
68
        android:layout_height="3dip"
69
        android:background="#777777"
70
        android:layout_width="match_parent"
71
        />
72

    
73
</LinearLayout>
(16-16/30)