aboutsummaryrefslogtreecommitdiffstats
path: root/ccnxandroidmetis/MetisControl/src/main/res/layout/fragment_metis_links.xml
blob: 1041eeb4e01dda4cd046d6a2118e8c0fbc4710b5 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<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=".MetisLinksFragment">

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

    <RelativeLayout
        android:id="@+id/rlLinkAddPanel"
        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"

        >

        <android.support.v7.widget.AppCompatSpinner
            android:id="@+id/spinnerLinkTypeAdd"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="8dp"
            android:layout_centerVertical="true"
            android:entries="@array/metis_link_type_array" />


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

        <EditText
            android:id="@+id/etLinkAddAddress"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="192.168.0.100:9695"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:layout_toRightOf="@id/spinnerLinkTypeAdd"
            android:layout_toLeftOf="@id/btnAddLink" />

        <CheckBox
            android:id="@+id/cbLinkListener"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="listener?"
            android:layout_toRightOf="@id/spinnerLinkTypeAdd"
            android:layout_below="@+id/etLinkAddAddress" />


    </RelativeLayout>

    <android.support.v7.widget.LinearLayoutCompat
        android:id="@+id/llLinkButtons"
        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/rlLinkAddPanel"
        android:orientation="horizontal">

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

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

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

</RelativeLayout>