1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2008 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 17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 18 android:title="@string/wifi_advanced_titlebar"> 19 20 <!-- android:dependency="enable_wifi" --> 21 <SwitchPreference 22 android:key="notify_open_networks" 23 android:title="@string/wifi_notify_open_networks" 24 android:summary="@string/wifi_notify_open_networks_summary" 25 android:persistent="false" /> 26 27 <SwitchPreference 28 android:key="wifi_scan_always_available" 29 android:title="@string/wifi_scan_always_available" 30 android:summary="@string/wifi_scan_always_available_summary" 31 android:persistent="false" /> 32 33 <ListPreference 34 android:key="sleep_policy" 35 android:title="@string/wifi_setting_sleep_policy_title" 36 android:persistent="false" 37 android:entries="@array/wifi_sleep_policy_entries" 38 android:entryValues="@array/wifi_sleep_policy_values" /> 39 40 <com.android.settings.AppListSwitchPreference 41 android:key="wifi_assistant" 42 android:title="@string/wifi_automatically_connect_title" 43 android:summary="@string/wifi_automatically_connect_summary" 44 android:dialogTitle="@string/wifi_select_assistant_dialog_title" 45 android:persistent="false" /> 46 47 <ListPreference 48 android:key="frequency_band" 49 android:title="@string/wifi_setting_frequency_band_title" 50 android:summary="@string/wifi_setting_frequency_band_summary" 51 android:persistent="false" 52 android:entries="@array/wifi_frequency_band_entries" 53 android:entryValues="@array/wifi_frequency_band_values" /> 54 55 <Preference 56 android:key="install_credentials" 57 android:title="@string/wifi_install_credentials" 58 android:persistent="false" /> 59 60 <Preference 61 android:key="wifi_direct" 62 android:title="@string/wifi_menu_p2p" 63 android:persistent="false" /> 64 65 <Preference 66 android:key="wps_push_button" 67 android:title="@string/wifi_menu_wps_pbc" 68 android:persistent="false" /> 69 70 <Preference 71 android:key="wps_pin_entry" 72 android:title="@string/wifi_menu_wps_pin" 73 android:persistent="false" /> 74 75 <Preference 76 android:key="mac_address" 77 android:title="@string/wifi_advanced_mac_address_title" 78 android:layout="@layout/mac_preference" /> 79 80 <Preference 81 android:key="current_ip_address" 82 android:title="@string/wifi_advanced_ip_address_title" 83 android:layout="@layout/wifi_advance_layout" /> 84 85</PreferenceScreen> 86