1 |
9530f6b0
|
Leszek Koltunski
|
<?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 |
bc7e49ec
|
Leszek Koltunski
|
<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 |
9f8d4c92
|
Leszek Koltunski
|
<LinearLayout
|
15 |
|
|
android:id="@+id/bandagedCreatorTopView"
|
16 |
48314d6a
|
Leszek Koltunski
|
android:layout_width="match_parent"
|
17 |
|
|
android:layout_height="0dp"
|
18 |
|
|
android:background="@color/light_grey"
|
19 |
9f8d4c92
|
Leszek Koltunski
|
android:orientation="horizontal"
|
20 |
48314d6a
|
Leszek Koltunski
|
android:layout_alignParentStart="true"
|
21 |
|
|
android:layout_alignParentTop="true">
|
22 |
9530f6b0
|
Leszek Koltunski
|
|
23 |
9f8d4c92
|
Leszek Koltunski
|
<HorizontalScrollView
|
24 |
|
|
android:id="@+id/bandagedCreatorScrollView"
|
25 |
|
|
android:layout_width="match_parent"
|
26 |
e48ad1af
|
Leszek Koltunski
|
android:layout_height="match_parent"
|
27 |
9f8d4c92
|
Leszek Koltunski
|
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 |
9530f6b0
|
Leszek Koltunski
|
|
38 |
|
|
<LinearLayout
|
39 |
|
|
android:id="@+id/lowerBar"
|
40 |
|
|
android:layout_alignParentBottom="true"
|
41 |
bc7e49ec
|
Leszek Koltunski
|
android:layout_alignParentStart="true"
|
42 |
9530f6b0
|
Leszek Koltunski
|
android:layout_width="match_parent"
|
43 |
|
|
android:layout_height="0dp"
|
44 |
|
|
android:orientation="horizontal"
|
45 |
bc7e49ec
|
Leszek Koltunski
|
android:background="@android:color/transparent">
|
46 |
9530f6b0
|
Leszek Koltunski
|
</LinearLayout>
|
47 |
|
|
|
48 |
|
|
</RelativeLayout>
|