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 <SwitchPreference 34 android:key="wifi_assistant" 35 android:title="@string/wifi_automatically_manage_title" 36 android:persistent="false" /> 37 38 <ListPreference 39 android:key="sleep_policy" 40 android:title="@string/wifi_setting_sleep_policy_title" 41 android:persistent="false" 42 android:entries="@array/wifi_sleep_policy_entries" 43 android:entryValues="@array/wifi_sleep_policy_values" /> 44 45 <ListPreference 46 android:key="frequency_band" 47 android:title="@string/wifi_setting_frequency_band_title" 48 android:summary="@string/wifi_setting_frequency_band_summary" 49 android:persistent="false" 50 android:entries="@array/wifi_frequency_band_entries" 51 android:entryValues="@array/wifi_frequency_band_values" /> 52 53 <Preference 54 android:key="install_credentials" 55 android:title="@string/wifi_install_credentials" 56 android:persistent="false" /> 57 58 <Preference 59 android:key="wifi_direct" 60 android:title="@string/wifi_menu_p2p" 61 android:persistent="false" /> 62 63 <Preference 64 android:key="wps_push_button" 65 android:title="@string/wifi_menu_wps_pbc" 66 android:persistent="false" /> 67 68 <Preference 69 android:key="wps_pin_entry" 70 android:title="@string/wifi_menu_wps_pin" 71 android:persistent="false" /> 72 73 <Preference 74 android:key="mac_address" 75 android:title="@string/wifi_advanced_mac_address_title" 76 android:layout="@layout/mac_preference" /> 77 78 <Preference 79 android:key="current_ip_address" 80 android:title="@string/wifi_advanced_ip_address_title" 81 android:layout="@layout/wifi_advance_layout" /> 82 83 </PreferenceScreen> 84