xref: /aosp_15_r20/development/apps/Development/res/layout/connectivity.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1*90c8c64dSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*90c8c64dSAndroid Build Coastguard Worker<!--
3*90c8c64dSAndroid Build Coastguard Worker/* //device/apps/Settings/assets/res/any/layout/keyboard_version.xml
4*90c8c64dSAndroid Build Coastguard Worker**
5*90c8c64dSAndroid Build Coastguard Worker** Copyright 2006, The Android Open Source Project
6*90c8c64dSAndroid Build Coastguard Worker**
7*90c8c64dSAndroid Build Coastguard Worker** Licensed under the Apache License, Version 2.0 (the "License");
8*90c8c64dSAndroid Build Coastguard Worker** you may not use this file except in compliance with the License.
9*90c8c64dSAndroid Build Coastguard Worker** You may obtain a copy of the License at
10*90c8c64dSAndroid Build Coastguard Worker**
11*90c8c64dSAndroid Build Coastguard Worker**     http://www.apache.org/licenses/LICENSE-2.0
12*90c8c64dSAndroid Build Coastguard Worker**
13*90c8c64dSAndroid Build Coastguard Worker** Unless required by applicable law or agreed to in writing, software
14*90c8c64dSAndroid Build Coastguard Worker** distributed under the License is distributed on an "AS IS" BASIS,
15*90c8c64dSAndroid Build Coastguard Worker** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16*90c8c64dSAndroid Build Coastguard Worker** See the License for the specific language governing permissions and
17*90c8c64dSAndroid Build Coastguard Worker** limitations under the License.
18*90c8c64dSAndroid Build Coastguard Worker*/
19*90c8c64dSAndroid Build Coastguard Worker-->
20*90c8c64dSAndroid Build Coastguard Worker<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
21*90c8c64dSAndroid Build Coastguard Worker    android:id="@+id/connectivity_layout"
22*90c8c64dSAndroid Build Coastguard Worker    android:descendantFocusability="beforeDescendants"
23*90c8c64dSAndroid Build Coastguard Worker    android:focusableInTouchMode="true"
24*90c8c64dSAndroid Build Coastguard Worker    android:focusable="true"
25*90c8c64dSAndroid Build Coastguard Worker    android:layout_width="match_parent"
26*90c8c64dSAndroid Build Coastguard Worker    android:layout_height="match_parent">
27*90c8c64dSAndroid Build Coastguard Worker
28*90c8c64dSAndroid Build Coastguard Worker  <LinearLayout
29*90c8c64dSAndroid Build Coastguard Worker    android:orientation="vertical"
30*90c8c64dSAndroid Build Coastguard Worker    android:layout_width="match_parent"
31*90c8c64dSAndroid Build Coastguard Worker    android:layout_height="wrap_content">
32*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
33*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
34*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
35*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
36*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/enableWifi"
37*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
38*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
39*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/enable_wifi" />
40*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/disableWifi"
41*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
42*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
43*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/disable_wifi" />
44*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
45*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
46*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
47*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
48*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
49*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/acquireWifiMulticastLock"
50*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
51*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
52*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/acquire_wifi_multicast_lock" />
53*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/releaseWifiMulticastLock"
54*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
55*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
56*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/release_wifi_multicast_lock" />
57*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
58*90c8c64dSAndroid Build Coastguard Worker
59*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
60*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
61*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
62*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
63*90c8c64dSAndroid Build Coastguard Worker
64*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
65*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
66*90c8c64dSAndroid Build Coastguard Worker      android:paddingTop="4dip"
67*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
68*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
69*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/startDelayedCycle"
70*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
71*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
72*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/start_toggling" />
73*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/stopDelayedCycle"
74*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
75*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
76*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/stop_toggling" />
77*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
78*90c8c64dSAndroid Build Coastguard Worker
79*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
80*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
81*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
82*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
83*90c8c64dSAndroid Build Coastguard Worker        <TextView
84*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
85*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
86*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/wifi_on_duration" />
87*90c8c64dSAndroid Build Coastguard Worker        <EditText android:id="@+id/dc_wifi_on_duration"
88*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
89*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
90*90c8c64dSAndroid Build Coastguard Worker          android:minEms="15" />
91*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
92*90c8c64dSAndroid Build Coastguard Worker
93*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
94*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
95*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
96*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
97*90c8c64dSAndroid Build Coastguard Worker        <TextView
98*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
99*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
100*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/wifi_off_duration" />
101*90c8c64dSAndroid Build Coastguard Worker        <EditText android:id="@+id/dc_wifi_off_duration"
102*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
103*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
104*90c8c64dSAndroid Build Coastguard Worker          android:minEms="15"/>
105*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
106*90c8c64dSAndroid Build Coastguard Worker
107*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
108*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
109*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
110*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
111*90c8c64dSAndroid Build Coastguard Worker        <TextView
112*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
113*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
114*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/wifi_cycles_done" />
115*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/dc_wifi_cycles_done"
116*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
117*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
118*90c8c64dSAndroid Build Coastguard Worker          android:minEms="15"/>
119*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
120*90c8c64dSAndroid Build Coastguard Worker
121*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
122*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
123*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
124*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
125*90c8c64dSAndroid Build Coastguard Worker
126*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
127*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
128*90c8c64dSAndroid Build Coastguard Worker      android:paddingTop="4dip"
129*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
130*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
131*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/startScreenCycle"
132*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
133*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
134*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/start_screen_toggling" />
135*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/stopScreenCycle"
136*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
137*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
138*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/stop_screen_toggling" />
139*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
140*90c8c64dSAndroid Build Coastguard Worker
141*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
142*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
143*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
144*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
145*90c8c64dSAndroid Build Coastguard Worker        <TextView
146*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
147*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
148*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/wifi_on_duration" />
149*90c8c64dSAndroid Build Coastguard Worker        <EditText android:id="@+id/sc_wifi_on_duration"
150*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
151*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
152*90c8c64dSAndroid Build Coastguard Worker          android:minEms="15" />
153*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
154*90c8c64dSAndroid Build Coastguard Worker
155*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
156*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
157*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
158*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
159*90c8c64dSAndroid Build Coastguard Worker        <TextView
160*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
161*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
162*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/wifi_off_duration" />
163*90c8c64dSAndroid Build Coastguard Worker        <EditText android:id="@+id/sc_wifi_off_duration"
164*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
165*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
166*90c8c64dSAndroid Build Coastguard Worker          android:minEms="15"/>
167*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
168*90c8c64dSAndroid Build Coastguard Worker
169*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
170*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
171*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
172*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
173*90c8c64dSAndroid Build Coastguard Worker        <TextView
174*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
175*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
176*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/wifi_cycles_done" />
177*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/sc_wifi_cycles_done"
178*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
179*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
180*90c8c64dSAndroid Build Coastguard Worker          android:minEms="15"/>
181*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
182*90c8c64dSAndroid Build Coastguard Worker
183*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
184*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
185*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
186*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
187*90c8c64dSAndroid Build Coastguard Worker
188*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
189*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
190*90c8c64dSAndroid Build Coastguard Worker      android:paddingTop="4dip"
191*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
192*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
193*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/startScan"
194*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
195*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
196*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/start_scan" />
197*90c8c64dSAndroid Build Coastguard Worker        <CheckBox android:id="@+id/scanDisconnect"
198*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
199*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
200*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/disconnect" />
201*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
202*90c8c64dSAndroid Build Coastguard Worker
203*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
204*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
205*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
206*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
207*90c8c64dSAndroid Build Coastguard Worker        <TextView
208*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
209*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
210*90c8c64dSAndroid Build Coastguard Worker          android:inputType="number"
211*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/scan_cycles" />
212*90c8c64dSAndroid Build Coastguard Worker        <EditText android:id="@+id/sc_scan_cycles"
213*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
214*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
215*90c8c64dSAndroid Build Coastguard Worker          android:minEms="5" />
216*90c8c64dSAndroid Build Coastguard Worker        <TextView android:id="@+id/sc_scan_results"
217*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
218*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
219*90c8c64dSAndroid Build Coastguard Worker          android:layout_marginLeft="14.5sp" />
220*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
221*90c8c64dSAndroid Build Coastguard Worker
222*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
223*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
224*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
225*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
226*90c8c64dSAndroid Build Coastguard Worker
227*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
228*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
229*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
230*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
231*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/startTdls"
232*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
233*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
234*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/start_tdls" />
235*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/stopTdls"
236*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
237*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
238*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/stop_tdls" />
239*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
240*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
241*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
242*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
243*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
244*90c8c64dSAndroid Build Coastguard Worker        <TextView
245*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
246*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
247*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/mac_tdls" />
248*90c8c64dSAndroid Build Coastguard Worker        <EditText android:id="@+id/sc_ip_mac"
249*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
250*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
251*90c8c64dSAndroid Build Coastguard Worker          android:minEms="10" />
252*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
253*90c8c64dSAndroid Build Coastguard Worker
254*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
255*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
256*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
257*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
258*90c8c64dSAndroid Build Coastguard Worker
259*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
260*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
261*90c8c64dSAndroid Build Coastguard Worker      android:paddingTop="4dip"
262*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
263*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
264*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/request_mms"
265*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
266*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
267*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/request_mms" />
268*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/release_mms"
269*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
270*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
271*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/release_mms" />
272*90c8c64dSAndroid Build Coastguard Worker        <ProgressBar android:id="@+id/mms_progress"
273*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
274*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content" />
275*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
276*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
277*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
278*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
279*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
280*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/request_supl"
281*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
282*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
283*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/request_supl" />
284*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/release_supl"
285*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
286*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
287*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/release_supl" />
288*90c8c64dSAndroid Build Coastguard Worker        <ProgressBar android:id="@+id/supl_progress"
289*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
290*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content" />
291*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
292*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
293*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
294*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
295*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
296*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/request_cell"
297*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
298*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
299*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/request_cell" />
300*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/release_cell"
301*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
302*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
303*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/release_cell" />
304*90c8c64dSAndroid Build Coastguard Worker        <ProgressBar android:id="@+id/cell_progress"
305*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
306*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content" />
307*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
308*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
309*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
310*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
311*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
312*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/request_wifi"
313*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
314*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
315*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/request_wifi" />
316*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/release_wifi"
317*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
318*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
319*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/release_wifi" />
320*90c8c64dSAndroid Build Coastguard Worker        <ProgressBar android:id="@+id/wifi_progress"
321*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
322*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content" />
323*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
324*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
325*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
326*90c8c64dSAndroid Build Coastguard Worker      android:paddingBottom="4dip"
327*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
328*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
329*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/report_all_bad"
330*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
331*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
332*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/report_all_bad" />
333*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
334*90c8c64dSAndroid Build Coastguard Worker
335*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
336*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
337*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
338*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
339*90c8c64dSAndroid Build Coastguard Worker
340*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
341*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
342*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
343*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
344*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/default_request"
345*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
346*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
347*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/default_request" />
348*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
349*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
350*90c8c64dSAndroid Build Coastguard Worker      android:orientation="horizontal"
351*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
352*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="wrap_content">
353*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/bound_http_request"
354*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
355*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
356*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/bound_http_request" />
357*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/bound_socket_request"
358*90c8c64dSAndroid Build Coastguard Worker          android:layout_width="wrap_content"
359*90c8c64dSAndroid Build Coastguard Worker          android:layout_height="wrap_content"
360*90c8c64dSAndroid Build Coastguard Worker          android:text="@string/bound_socket_request" />
361*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
362*90c8c64dSAndroid Build Coastguard Worker
363*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
364*90c8c64dSAndroid Build Coastguard Worker        android:orientation="horizontal"
365*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
366*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="wrap_content">
367*90c8c64dSAndroid Build Coastguard Worker        <TextView
368*90c8c64dSAndroid Build Coastguard Worker            android:id="@+id/http_response"
369*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
370*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content" />
371*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
372*90c8c64dSAndroid Build Coastguard Worker
373*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
374*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
375*90c8c64dSAndroid Build Coastguard Worker      android:layout_width="match_parent"
376*90c8c64dSAndroid Build Coastguard Worker      android:layout_height="3dip" />
377*90c8c64dSAndroid Build Coastguard Worker
378*90c8c64dSAndroid Build Coastguard Worker    <!-- divider line -->
379*90c8c64dSAndroid Build Coastguard Worker    <View android:background="#FFFFFFFF"
380*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
381*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="3dip" />
382*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
383*90c8c64dSAndroid Build Coastguard Worker        android:orientation="horizontal"
384*90c8c64dSAndroid Build Coastguard Worker        android:paddingTop="4dip"
385*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
386*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="wrap_content">
387*90c8c64dSAndroid Build Coastguard Worker        <Button android:id="@+id/link_stats"
388*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
389*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
390*90c8c64dSAndroid Build Coastguard Worker            android:text="@string/link_stats" />
391*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
392*90c8c64dSAndroid Build Coastguard Worker
393*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
394*90c8c64dSAndroid Build Coastguard Worker        android:orientation="horizontal"
395*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
396*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="wrap_content">
397*90c8c64dSAndroid Build Coastguard Worker        <TextView
398*90c8c64dSAndroid Build Coastguard Worker            android:id="@+id/stats"
399*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
400*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
401*90c8c64dSAndroid Build Coastguard Worker            android:text="@string/stats_results" />
402*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
403*90c8c64dSAndroid Build Coastguard Worker
404*90c8c64dSAndroid Build Coastguard Worker  </LinearLayout>
405*90c8c64dSAndroid Build Coastguard Worker</ScrollView>
406*90c8c64dSAndroid Build Coastguard Worker
407