Project

General

Profile

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

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

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
    <HorizontalScrollView
15
        android:id="@+id/bandagedCreatorScrollView"
16
        android:layout_width="match_parent"
17
        android:layout_height="0dp"
18
        android:background="@color/light_grey"
19
        android:layout_alignParentStart="true"
20
        android:layout_alignParentTop="true">
21

    
22
        <LinearLayout
23
            android:id="@+id/bandagedCreatorView"
24
            android:layout_width="wrap_content"
25
            android:layout_height="match_parent"
26
            android:background="@color/black"
27
            android:orientation="horizontal"/>
28
    </HorizontalScrollView>
29

    
30
    <LinearLayout
31
        android:id="@+id/lowerBar"
32
        android:layout_alignParentBottom="true"
33
        android:layout_alignParentStart="true"
34
        android:layout_width="match_parent"
35
        android:layout_height="0dp"
36
        android:orientation="horizontal"
37
        android:background="@android:color/transparent">
38
    </LinearLayout>
39

    
40
</RelativeLayout>
(2-2/35)