Statistics
| Branch: | Revision:

root / res / layout / addnodes.xml @ b722cab3

History | View | Annotate | Download (1.2 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
        android:orientation="vertical" android:layout_width="fill_parent"
4
        android:layout_height="fill_parent">
5
        <RelativeLayout android:layout_width="fill_parent"
6
                android:id="@+id/nodes_relative" android:layout_height="fill_parent">
7
                <ScrollView android:layout_height="wrap_content"
8
                        android:orientation="vertical" android:layout_width="wrap_content"
9
                        android:id="@+id/node_scroll" android:layout_above="@+id/submit_nodes_button">
10
                        <LinearLayout android:layout_width="fill_parent"
11
                                android:id="@+id/nodes_linear_layout" android:layout_height="fill_parent">
12
                                <ListView android:layout_weight="1" android:layout_width="fill_parent"
13
                                        android:cacheColorHint="@android:color/transparent"
14
                                        android:layout_height="417dp" android:id="@android:id/list"></ListView>
15
                        </LinearLayout>
16
                </ScrollView>
17
                <Button android:layout_height="wrap_content" android:layout_alignParentBottom="true"
18
                        android:layout_centerInParent="true" android:layout_marginBottom="15dip"
19
                        android:layout_width="120dp" android:text="Add Nodes"
20
                        android:layout_marginTop="5dip" android:id="@+id/submit_nodes_button"></Button>
21
        </RelativeLayout>
22
</LinearLayout>
23

    
24