1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
android:id="@+id/relativeLayout"
|
4
|
android:layout_width="match_parent"
|
5
|
android:layout_height="match_parent" >
|
6
|
|
7
|
<org.distorted.bandaged.BandagedCreatorView
|
8
|
android:id="@+id/bandagedCreatorObjectView"
|
9
|
android:layout_width="match_parent"
|
10
|
android:layout_height="0dp"
|
11
|
android:layout_alignParentBottom="true"
|
12
|
android:layout_alignParentStart="true"/>
|
13
|
|
14
|
<LinearLayout
|
15
|
android:id="@+id/bandagedCreatorTopView"
|
16
|
android:layout_width="match_parent"
|
17
|
android:layout_height="0dp"
|
18
|
android:background="@color/light_grey"
|
19
|
android:orientation="horizontal"
|
20
|
android:layout_alignParentStart="true"
|
21
|
android:layout_alignParentTop="true">
|
22
|
|
23
|
<HorizontalScrollView
|
24
|
android:id="@+id/bandagedCreatorScrollView"
|
25
|
android:layout_width="match_parent"
|
26
|
android:layout_height="match_parent"
|
27
|
android:background="@color/black">
|
28
|
|
29
|
<LinearLayout
|
30
|
android:id="@+id/bandagedCreatorView"
|
31
|
android:layout_width="wrap_content"
|
32
|
android:layout_height="match_parent"
|
33
|
android:background="@color/black"
|
34
|
android:orientation="horizontal"/>
|
35
|
</HorizontalScrollView>
|
36
|
</LinearLayout>
|
37
|
|
38
|
<LinearLayout
|
39
|
android:id="@+id/lowerBar"
|
40
|
android:layout_alignParentBottom="true"
|
41
|
android:layout_alignParentStart="true"
|
42
|
android:layout_width="match_parent"
|
43
|
android:layout_height="0dp"
|
44
|
android:orientation="horizontal"
|
45
|
android:background="@android:color/transparent">
|
46
|
</LinearLayout>
|
47
|
|
48
|
</RelativeLayout>
|