1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
android:layout_width="match_parent"
|
4
|
android:layout_height="match_parent"
|
5
|
android:background="@android:color/transparent"
|
6
|
android:orientation="vertical">
|
7
|
|
8
|
<LinearLayout
|
9
|
android:id="@+id/bandagedCreatorTopView"
|
10
|
android:layout_width="match_parent"
|
11
|
android:layout_height="100dp"
|
12
|
android:background="@color/light_grey"
|
13
|
android:orientation="horizontal">
|
14
|
|
15
|
<HorizontalScrollView
|
16
|
android:id="@+id/bandagedCreatorScrollView"
|
17
|
android:layout_width="match_parent"
|
18
|
android:layout_height="match_parent"
|
19
|
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
|
|
30
|
<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
|
|
70
|
<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>
|