1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17	style="@style/RootLayoutPadding"
18        android:orientation="vertical"
19        android:layout_width="match_parent"
20        android:layout_height="match_parent">
21
22    <ScrollView
23            android:layout_width="match_parent"
24            android:layout_height="match_parent">
25	<LinearLayout
26	android:layout_width="match_parent"
27	android:layout_height="match_parent"
28	android:orientation="vertical">
29        <TextView
30                android:id="@+id/device_owner_wifi_lockdown_info"
31                android:layout_width="match_parent"
32                android:layout_height="wrap_content"
33                android:padding="2dip"
34                android:text="@string/device_owner_wifi_lockdown_info"
35                android:textSize="12dip" />
36
37    <EditText
38        android:id="@+id/device_owner_wifi_ssid"
39        android:hint="(SSID)"
40	android:layout_marginLeft="50dip"
41        android:layout_width="wrap_content"
42        android:layout_height="wrap_content" />
43
44    <RadioGroup
45        android:id="@+id/device_owner_keyManagementMethods"
46        android:layout_width="match_parent"
47        android:layout_height="wrap_content"
48        android:orientation="vertical">
49        <RadioButton
50            android:id="@+id/device_owner_keymgmnt_none"
51            android:layout_width="wrap_content"
52            android:layout_height="wrap_content"
53            android:text="@string/device_owner_wifi_key_management_none_button" />
54        <RadioButton
55            android:id="@+id/device_owner_keymgmnt_wpa"
56            android:layout_width="wrap_content"
57            android:layout_height="wrap_content"
58            android:text="@string/device_owner_wifi_key_management_wpa_button" />
59        <RadioButton
60            android:id="@+id/device_owner_keymgmnt_wep"
61            android:layout_width="wrap_content"
62            android:layout_height="wrap_content"
63            android:text="@string/device_owner_wifi_key_management_wep_button" />
64    </RadioGroup>
65
66    <Button
67        android:id="@+id/create_wifi_config_button"
68        android:layout_width="match_parent"
69        android:layout_height="wrap_content"
70	android:textSize="12dip"
71        android:text="@string/create_wifi_config_button_label" />
72
73    <ListView
74        android:id="@+id/android:list"
75        android:layout_width="match_parent"
76        android:layout_height="200dip"/>
77
78    <include layout="@layout/pass_fail_buttons" />
79</LinearLayout>
80</ScrollView>
81</LinearLayout>
82