Project

General

Profile

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

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

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

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