Statistics
| Branch: | Revision:

root / res / layout-land / view_loadbalancer.xml @ ea001570

History | View | Annotate | Download (15.4 kB)

1 ea001570 Phillip Toohill
<?xml version="1.0" encoding="utf-8"?>
2 ea001570 Phillip Toohill
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 ea001570 Phillip Toohill
        android:id="@+id/view_loadbalncer_layout" android:orientation="vertical"
4 ea001570 Phillip Toohill
        android:layout_width="fill_parent" android:layout_height="fill_parent"
5 ea001570 Phillip Toohill
        android:background="@drawable/rackbg_land">
6 ea001570 Phillip Toohill
        <ImageView android:id="@+id/headerimage"
7 ea001570 Phillip Toohill
                android:layout_width="wrap_content" android:layout_height="80dip"/>
8 ea001570 Phillip Toohill
        <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
9 ea001570 Phillip Toohill
                android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1">
10 ea001570 Phillip Toohill
                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
11 ea001570 Phillip Toohill
                        android:id="@+id/view_layout_layout" android:orientation="vertical"
12 ea001570 Phillip Toohill
                        android:layout_width="fill_parent" android:layout_height="fill_parent">
13 ea001570 Phillip Toohill
                        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
14 ea001570 Phillip Toohill
                                android:id="@+id/view_loadbalancer_layout" android:orientation="vertical"
15 ea001570 Phillip Toohill
                                android:layout_width="fill_parent" android:layout_height="wrap_content"
16 ea001570 Phillip Toohill
                                android:paddingLeft="5dip" android:background="@drawable/itemsbox_landscape">
17 ea001570 Phillip Toohill
                                <TextView android:layout_height="wrap_content"
18 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_marginLeft="22dip"
19 ea001570 Phillip Toohill
                                        android:layout_marginRight="30dip" android:scrollHorizontally="true"
20 ea001570 Phillip Toohill
                                        android:gravity="fill_horizontal" android:textSize="20.0sp"
21 ea001570 Phillip Toohill
                                        android:textColor="#fff" android:layout_marginTop="30dip"
22 ea001570 Phillip Toohill
                                        android:paddingBottom="10dip" android:text="LoadBalancer" />
23 ea001570 Phillip Toohill
24 ea001570 Phillip Toohill
                                <!-- ID -->
25 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
26 ea001570 Phillip Toohill
                                        android:id="@+id/view_lb_id_layout" android:orientation="horizontal"
27 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
28 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
29 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
30 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="ID: " android:singleLine="false"
31 ea001570 Phillip Toohill
                                                android:textStyle="bold" />
32 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_lb_id"
33 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
34 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
35 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
36 ea001570 Phillip Toohill
                                </LinearLayout>
37 ea001570 Phillip Toohill
                                <!-- Name -->
38 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
39 ea001570 Phillip Toohill
                                        android:id="@+id/view_name_layout" android:orientation="horizontal"
40 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
41 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
42 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
43 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="ID: " android:singleLine="false"
44 ea001570 Phillip Toohill
                                                android:textStyle="bold" />
45 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_name"
46 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
47 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
48 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
49 ea001570 Phillip Toohill
                                </LinearLayout>
50 ea001570 Phillip Toohill
                                <!-- Protocol -->
51 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
52 ea001570 Phillip Toohill
                                        android:id="@+id/view_protocol_layout" android:orientation="horizontal"
53 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
54 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
55 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
56 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Protocol: "
57 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
58 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_protocol"
59 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
60 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
61 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
62 ea001570 Phillip Toohill
                                </LinearLayout>
63 ea001570 Phillip Toohill
                                <!-- Port -->
64 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
65 ea001570 Phillip Toohill
                                        android:id="@+id/view_port_layout" android:orientation="horizontal"
66 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
67 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
68 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
69 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Port: "
70 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
71 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_port"
72 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
73 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
74 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
75 ea001570 Phillip Toohill
                                </LinearLayout>
76 ea001570 Phillip Toohill
                                <!-- Algorithm -->
77 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
78 ea001570 Phillip Toohill
                                        android:id="@+id/view_algorithm_layout" android:orientation="horizontal"
79 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
80 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
81 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
82 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Algorithm: "
83 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
84 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_algorithm"
85 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
86 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
87 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
88 ea001570 Phillip Toohill
                                </LinearLayout>
89 ea001570 Phillip Toohill
                                <!-- Status -->
90 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
91 ea001570 Phillip Toohill
                                        android:id="@+id/view_status_layout" android:orientation="horizontal"
92 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
93 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
94 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
95 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Status: "
96 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
97 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_status"
98 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
99 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
100 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
101 ea001570 Phillip Toohill
                                </LinearLayout>
102 ea001570 Phillip Toohill
                                <!-- ConnectionLogging -->
103 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
104 ea001570 Phillip Toohill
                                        android:id="@+id/view_islogging_layout" android:orientation="horizontal"
105 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
106 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
107 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
108 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Connection Logging: "
109 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
110 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_islogging"
111 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
112 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:paddingBottom="30dip"
113 ea001570 Phillip Toohill
                                                android:scrollHorizontally="true" android:gravity="fill_horizontal"
114 ea001570 Phillip Toohill
                                                android:textColor="#fff" />
115 ea001570 Phillip Toohill
                                </LinearLayout>
116 ea001570 Phillip Toohill
                        </LinearLayout>
117 ea001570 Phillip Toohill
                        <!-- VirtualIps -->
118 ea001570 Phillip Toohill
                        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
119 ea001570 Phillip Toohill
                                android:id="@+id/view_loadbalancer_layout" android:orientation="vertical"
120 ea001570 Phillip Toohill
                                android:layout_width="fill_parent" android:layout_height="wrap_content"
121 ea001570 Phillip Toohill
                                android:paddingLeft="5dip" android:background="@drawable/itemsbox_landscape">
122 ea001570 Phillip Toohill
                                <TextView android:layout_height="wrap_content"
123 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_marginLeft="22dip"
124 ea001570 Phillip Toohill
                                        android:layout_marginRight="30dip" android:scrollHorizontally="true"
125 ea001570 Phillip Toohill
                                        android:gravity="fill_horizontal" android:textSize="20.0sp"
126 ea001570 Phillip Toohill
                                        android:textColor="#fff" android:layout_marginTop="30dip"
127 ea001570 Phillip Toohill
                                        android:paddingBottom="10dip" android:text="VirtualIps" />
128 ea001570 Phillip Toohill
                                <!-- ID -->
129 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
130 ea001570 Phillip Toohill
                                        android:id="@+id/view_vip_id_layout" android:orientation="horizontal"
131 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
132 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
133 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
134 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="ID: " android:singleLine="false"
135 ea001570 Phillip Toohill
                                                android:textStyle="bold" />
136 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_vip_id"
137 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
138 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
139 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
140 ea001570 Phillip Toohill
                                </LinearLayout>
141 ea001570 Phillip Toohill
                                <!-- Ip Address -->
142 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
143 ea001570 Phillip Toohill
                                        android:id="@+id/view_vip_address_layout" android:orientation="horizontal"
144 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
145 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
146 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
147 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="IpAddress: "
148 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
149 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_vip_address"
150 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
151 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
152 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
153 ea001570 Phillip Toohill
                                </LinearLayout>
154 ea001570 Phillip Toohill
                                <!-- IpVersion -->
155 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
156 ea001570 Phillip Toohill
                                        android:id="@+id/view_ipversion_layout" android:orientation="horizontal"
157 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
158 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
159 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
160 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="IpVersion: "
161 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
162 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_ipversion"
163 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
164 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
165 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
166 ea001570 Phillip Toohill
                                </LinearLayout>
167 ea001570 Phillip Toohill
                                <!-- Type -->
168 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
169 ea001570 Phillip Toohill
                                        android:id="@+id/view_vip_type_layout" android:orientation="horizontal"
170 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
171 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
172 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
173 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Type: "
174 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
175 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_vip_type"
176 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
177 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
178 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
179 ea001570 Phillip Toohill
                                </LinearLayout>
180 ea001570 Phillip Toohill
                        </LinearLayout>
181 ea001570 Phillip Toohill
                        <!-- Nodes -->
182 ea001570 Phillip Toohill
                        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
183 ea001570 Phillip Toohill
                                android:id="@+id/view_loadbalancer_layout" android:orientation="vertical"
184 ea001570 Phillip Toohill
                                android:layout_width="fill_parent" android:layout_height="wrap_content"
185 ea001570 Phillip Toohill
                                android:paddingLeft="5dip" android:background="@drawable/itemsbox_landscape">
186 ea001570 Phillip Toohill
                                <TextView android:layout_height="wrap_content"
187 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_marginLeft="22dip"
188 ea001570 Phillip Toohill
                                        android:layout_marginRight="30dip" android:scrollHorizontally="true"
189 ea001570 Phillip Toohill
                                        android:gravity="fill_horizontal" android:textSize="20.0sp"
190 ea001570 Phillip Toohill
                                        android:textColor="#fff" android:layout_marginTop="30dip"
191 ea001570 Phillip Toohill
                                        android:paddingBottom="10dip" android:text="Nodes" />
192 ea001570 Phillip Toohill
                                <!-- ID -->
193 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
194 ea001570 Phillip Toohill
                                        android:id="@+id/view_node_id_layout" android:orientation="horizontal"
195 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
196 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
197 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
198 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="ID: " android:singleLine="false"
199 ea001570 Phillip Toohill
                                                android:textStyle="bold" />
200 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_node_id"
201 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
202 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
203 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
204 ea001570 Phillip Toohill
                                </LinearLayout>
205 ea001570 Phillip Toohill
                                <!-- Address -->
206 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
207 ea001570 Phillip Toohill
                                        android:id="@+id/view_node_address_layout" android:orientation="horizontal"
208 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
209 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
210 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
211 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Address: "
212 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
213 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_node_address"
214 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
215 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
216 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
217 ea001570 Phillip Toohill
                                </LinearLayout>
218 ea001570 Phillip Toohill
                                <!-- Port -->
219 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
220 ea001570 Phillip Toohill
                                        android:id="@+id/view_node_port_layout" android:orientation="horizontal"
221 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
222 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
223 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
224 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Port: "
225 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
226 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_node_port"
227 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
228 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
229 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
230 ea001570 Phillip Toohill
                                </LinearLayout>
231 ea001570 Phillip Toohill
                                <!-- Condition -->
232 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
233 ea001570 Phillip Toohill
                                        android:id="@+id/view_node_condition_layout" android:orientation="horizontal"
234 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
235 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
236 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
237 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Condition: "
238 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
239 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_node_condition"
240 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
241 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
242 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
243 ea001570 Phillip Toohill
                                </LinearLayout>
244 ea001570 Phillip Toohill
                                <!-- Status -->
245 ea001570 Phillip Toohill
                                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
246 ea001570 Phillip Toohill
                                        android:id="@+id/view_node_status_layout" android:orientation="horizontal"
247 ea001570 Phillip Toohill
                                        android:layout_width="fill_parent" android:layout_height="wrap_content">
248 ea001570 Phillip Toohill
                                        <TextView android:layout_width="wrap_content"
249 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_marginLeft="22dip"
250 ea001570 Phillip Toohill
                                                android:paddingLeft="5dip" android:text="Status: "
251 ea001570 Phillip Toohill
                                                android:singleLine="false" android:textStyle="bold" />
252 ea001570 Phillip Toohill
                                        <TextView android:id="@+id/view_node_status"
253 ea001570 Phillip Toohill
                                                android:layout_height="wrap_content" android:layout_width="fill_parent"
254 ea001570 Phillip Toohill
                                                android:layout_marginRight="30dip" android:scrollHorizontally="true"
255 ea001570 Phillip Toohill
                                                android:gravity="fill_horizontal" android:textColor="#fff" />
256 ea001570 Phillip Toohill
                                </LinearLayout>
257 ea001570 Phillip Toohill
                        </LinearLayout>
258 ea001570 Phillip Toohill
                </LinearLayout>
259 ea001570 Phillip Toohill
        </ScrollView>
260 ea001570 Phillip Toohill
        <ImageView android:id="@+id/footerimage" android:layout_width="wrap_content" android:layout_height="25dip"/>
261 ea001570 Phillip Toohill
</LinearLayout>