Project

General

Profile

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

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

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/effects3dButtonAdd"
15
                android:layout_width="wrap_content"
16
                android:layout_height="wrap_content"
17
                android:text="@string/Add"
18
                />
19

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

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

    
33
            <Button
34
                android:id="@+id/effects3dButtonRemove"
35
                android:layout_width="wrap_content"
36
                android:layout_height="wrap_content"
37
                android:text="@string/reset"
38
                />
39

    
40
        </LinearLayout>
41

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

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

    
55
            <LinearLayout
56
                android:id="@+id/effects3dlayout3"
57
                android:layout_width="match_parent"
58
                android:layout_height="wrap_content"
59
                android:orientation="vertical" >
60
            </LinearLayout>
61

    
62
        </ScrollView>
63

    
64
</LinearLayout>
(23-23/47)