Project

General

Profile

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

magiccube / src / main / res / layout / bandaged.xml @ 65bc1da3

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 48314d6a Leszek Koltunski
        android:background="@color/light_grey"
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 9f8d4c92 Leszek Koltunski
            android:background="@color/black">
20
21
            <LinearLayout
22
               android:id="@+id/bandagedCreatorView"
23
               android:layout_width="wrap_content"
24
               android:layout_height="match_parent"
25
               android:background="@color/black"
26
               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
       <org.distorted.bandaged.BandagedCreatorView
36
           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
               android:textAlignment="center"/>
56
           <Spinner
57
               android:id="@+id/bandagedCreatorY"
58
               android:layout_width="0dp"
59
               android:layout_height="match_parent"
60
               android:layout_weight="1.0"
61
               android:textAlignment="center"/>
62
           <Spinner
63
               android:id="@+id/bandagedCreatorZ"
64
               android:layout_width="0dp"
65
               android:layout_height="match_parent"
66
               android:layout_weight="1.0"
67
               android:textAlignment="center"/>
68
       </LinearLayout>
69 9530f6b0 Leszek Koltunski
70 b9d062cf Leszek Koltunski
       <LinearLayout
71
           android:id="@+id/lowerBar"
72
           android:layout_alignParentBottom="true"
73
           android:layout_alignParentStart="true"
74
           android:layout_width="match_parent"
75
           android:layout_height="0dp"
76
           android:orientation="horizontal"
77
           android:background="@android:color/transparent">
78
       </LinearLayout>
79
    </RelativeLayout>
80
</LinearLayout>