Project

General

Profile

Download (3.12 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / bandaged.xml @ edc6fab2

1 9530f6b0 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2 b9d062cf Leszek Koltunski
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 9530f6b0 Leszek Koltunski
    android:layout_width="match_parent"
4 b9d062cf Leszek Koltunski
    android:layout_height="match_parent"
5
    android:background="@android:color/transparent"
6
    android:orientation="vertical">
7 bc7e49ec Leszek Koltunski
8 9f8d4c92 Leszek Koltunski
    <LinearLayout
9
        android:id="@+id/bandagedCreatorTopView"
10 48314d6a Leszek Koltunski
        android:layout_width="match_parent"
11 b9d062cf Leszek Koltunski
        android:layout_height="100dp"
12 840ad93e leszek
        android:background="?lightC"
13 b9d062cf Leszek Koltunski
        android:orientation="horizontal">
14 9530f6b0 Leszek Koltunski
15 9f8d4c92 Leszek Koltunski
        <HorizontalScrollView
16
            android:id="@+id/bandagedCreatorScrollView"
17
            android:layout_width="match_parent"
18 e48ad1af Leszek Koltunski
            android:layout_height="match_parent"
19 8c4e4bf4 leszek
            android:background="?veryDarkC">
20 9f8d4c92 Leszek Koltunski
21
            <LinearLayout
22
               android:id="@+id/bandagedCreatorView"
23
               android:layout_width="wrap_content"
24
               android:layout_height="match_parent"
25 8c4e4bf4 leszek
               android:background="?veryDarkC"
26 9f8d4c92 Leszek Koltunski
               android:orientation="horizontal"/>
27
        </HorizontalScrollView>
28
    </LinearLayout>
29 9530f6b0 Leszek Koltunski
30 b9d062cf Leszek Koltunski
    <RelativeLayout
31
       android:id="@+id/relativeLayout"
32
       android:layout_width="match_parent"
33
       android:layout_height="match_parent">
34
35 7ee8337b leszek
       <org.distorted.bandaged.BandagedView
36 b9d062cf Leszek Koltunski
           android:id="@+id/bandagedCreatorObjectView"
37
           android:layout_width="match_parent"
38
           android:layout_height="0dp"
39
           android:layout_alignParentBottom="true"
40
           android:layout_alignParentStart="true"/>
41
42
       <LinearLayout
43
           android:id="@+id/bandagedCreatorButtons"
44
           android:layout_width="match_parent"
45
           android:layout_height="0dp"
46
           android:background="@android:color/transparent"
47
           android:orientation="horizontal"
48
           android:layout_alignParentTop="true">
49
50
           <Spinner
51
               android:id="@+id/bandagedCreatorX"
52
               android:layout_width="0dp"
53
               android:layout_height="match_parent"
54
               android:layout_weight="1.0"
55 2456eaa0 leszek
               android:background="@drawable/ui_spinner"
56
               android:popupBackground="?darkC"/>
57 b9d062cf Leszek Koltunski
           <Spinner
58
               android:id="@+id/bandagedCreatorY"
59
               android:layout_width="0dp"
60
               android:layout_height="match_parent"
61
               android:layout_weight="1.0"
62 2456eaa0 leszek
               android:background="@drawable/ui_spinner"
63
               android:popupBackground="?darkC"/>
64 b9d062cf Leszek Koltunski
           <Spinner
65
               android:id="@+id/bandagedCreatorZ"
66
               android:layout_width="0dp"
67
               android:layout_height="match_parent"
68
               android:layout_weight="1.0"
69 2456eaa0 leszek
               android:background="@drawable/ui_spinner"
70
               android:popupBackground="?darkC"/>
71 b9d062cf Leszek Koltunski
       </LinearLayout>
72 9530f6b0 Leszek Koltunski
73 b9d062cf Leszek Koltunski
       <LinearLayout
74
           android:id="@+id/lowerBar"
75
           android:layout_alignParentBottom="true"
76
           android:layout_alignParentStart="true"
77
           android:layout_width="match_parent"
78
           android:layout_height="0dp"
79
           android:orientation="horizontal"
80
           android:background="@android:color/transparent">
81
       </LinearLayout>
82
    </RelativeLayout>
83
</LinearLayout>