Project

General

Profile

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

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

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
    <LinearLayout
8
        android:id="@+id/bandagedCreatorView"
9
        android:layout_width="match_parent"
10
        android:layout_height="0dp"
11
        android:background="@color/light_grey"
12
        android:layout_alignParentStart="true"
13
        android:layout_alignParentTop="true">
14
    <ScrollView
15
        android:id="@+id/bandagedCreatorScrollView"
16
        android:background="@color/black"
17
        android:layout_width="match_parent"
18
        android:layout_height="match_parent"/>
19
    </LinearLayout>
20

    
21
    <org.distorted.bandaged.BandagedCreatorView
22
        android:id="@+id/bandagedCreatorObjectView"
23
        android:layout_below="@+id/bandagedCreatorView"
24
        android:layout_width="match_parent"
25
        android:layout_height="0dp"
26
        android:layout_alignParentStart="true"/>
27

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

    
37
</RelativeLayout>
(2-2/33)