You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
3.1 KiB
82 lines
3.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2015 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="@style/RootLayoutPadding"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/device_owner_wifi_lockdown_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="2dip"
|
|
android:text="@string/device_owner_wifi_lockdown_info"
|
|
android:textSize="12dip" />
|
|
|
|
<EditText
|
|
android:id="@+id/device_owner_wifi_ssid"
|
|
android:hint="(SSID)"
|
|
android:layout_marginLeft="50dip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<RadioGroup
|
|
android:id="@+id/device_owner_keyManagementMethods"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<RadioButton
|
|
android:id="@+id/device_owner_keymgmnt_none"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/device_owner_wifi_key_management_none_button" />
|
|
<RadioButton
|
|
android:id="@+id/device_owner_keymgmnt_wpa"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/device_owner_wifi_key_management_wpa_button" />
|
|
<RadioButton
|
|
android:id="@+id/device_owner_keymgmnt_wep"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/device_owner_wifi_key_management_wep_button" />
|
|
</RadioGroup>
|
|
|
|
<Button
|
|
android:id="@+id/create_wifi_config_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="12dip"
|
|
android:text="@string/create_wifi_config_button_label" />
|
|
|
|
<ListView
|
|
android:id="@+id/android:list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="230dip"/>
|
|
|
|
<include layout="@layout/pass_fail_buttons" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</LinearLayout>
|