Project

General

Profile

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

examples / src / main / res / layout / effect1d.xml @ bf3b5480

1 50f58197 Leszek Koltunski
<?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 2fad84a7 Leszek Koltunski
        <LinearLayout
9 de82c8b7 Leszek Koltunski
              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 fa9053f5 Leszek Koltunski
                    android:id="@+id/button1dRemove"
28 de82c8b7 Leszek Koltunski
                    android:layout_weight="0.2"
29 d28ddc9b Leszek Koltunski
                    android:layout_marginTop="3dp"/>
30 de82c8b7 Leszek Koltunski
        </LinearLayout>
31 50f58197 Leszek Koltunski
32
        <SeekBar
33
            android:id="@+id/effect1dbar1"
34
            android:layout_width="fill_parent"
35
            android:layout_height="wrap_content"
36
            android:layout_marginEnd="5dp"
37
            android:layout_marginLeft="5dp"
38
            android:layout_marginRight="5dp" />
39
40
</LinearLayout>