Project

General

Profile

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

examples / src / main / res / layout / effects3dtab1.xml @ 65f622c1

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

    
7
        <LinearLayout
8
            android:layout_width="match_parent"
9
            android:layout_height="42dp"
10
            android:layout_gravity="center"
11
            android:orientation="horizontal">
12

    
13
            <Button
14
                android:id="@+id/buttonAdd"
15
                android:layout_width="wrap_content"
16
                android:layout_height="wrap_content"
17
                android:onClick="newEffect"
18
                android:text="@string/Add"
19
                />
20

    
21
            <TextView
22
                android:id="@+id/textView1"
23
                android:layout_width="wrap_content"
24
                android:layout_height="wrap_content"
25
                android:text="@string/New"
26
                android:textAppearance="?android:attr/textAppearanceMedium"/>
27

    
28
            <Spinner
29
                android:id="@+id/effects3dspinner1"
30
                android:layout_width="0dp"
31
                android:layout_height="wrap_content"
32
                android:layout_weight="0.5"/>
33

    
34
            <Button
35
                android:id="@+id/buttonRemove"
36
                android:layout_width="wrap_content"
37
                android:layout_height="wrap_content"
38
                android:onClick="removeAll"
39
                android:text="@string/reset"
40
                />
41

    
42
        </LinearLayout>
43

    
44
        <View
45
            android:layout_height="4dip"
46
            android:background="#777777"
47
            android:layout_width="match_parent"
48
            />
49

    
50
        <ScrollView
51
            android:id="@+id/effects3dscrollView"
52
            android:layout_width="match_parent"
53
            android:layout_height="0dp"
54
            android:layout_weight="0.80"
55
            >
56

    
57
            <LinearLayout
58
                android:id="@+id/effects3dlayout1"
59
                android:layout_width="match_parent"
60
                android:layout_height="wrap_content"
61
                android:orientation="vertical" >
62
            </LinearLayout>
63

    
64
        </ScrollView>
65

    
66
</LinearLayout>
(20-20/39)