aboutsummaryrefslogtreecommitdiffstats
path: root/ccnxandroidmetis/MetisControl/src/main/res/layout/fragment_metis_routes.xml
blob: bd0857b5d2db9f44a4cc40dea02c5b38c4f7b85d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:animateLayoutChanges="true"

    tools:context=".MetisRoutesFragment">

    <!-- TODO: Update blank fragment layout -->

    <RelativeLayout
        android:id="@+id/rlRouteAddPanel"
        android:visibility="visible"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/add_panel_border"
        android:gravity="top"
        android:layout_marginBottom="10dp"
        android:padding="10px"

        >

        <Button
            android:id="@+id/btnAddRoute"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:text="Add Route"
            android:layout_marginRight="10dp"
            android:layout_alignParentEnd="true" />

        <EditText
            android:id="@+id/etRouteAddAddress"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="192.168.0.100:9695"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:layout_toLeftOf="@id/btnAddRoute" />


    </RelativeLayout>

    <android.support.v7.widget.LinearLayoutCompat
        android:id="@+id/llRouteButtons"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="20dp"
        android:layout_marginTop="10dp"
        android:layout_below="@id/rlRouteAddPanel"
        android:orientation="horizontal">

        <Button
            android:id="@+id/btnRefresh"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/rlRouteAddPanel"
            android:text="Refresh" />

    </android.support.v7.widget.LinearLayoutCompat>

    <ListView
        android:id="@+id/lvRouteList"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_below="@id/llRouteButtons"
        android:layout_gravity="top|center_horizontal"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="80dp"
        android:background="@drawable/add_panel_border"
        android:padding="10dp"
        android:divider="@android:color/transparent"
        android:layout_alignParentBottom="true"
        android:dividerHeight="10dp" />

</RelativeLayout>