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 <CheckBoxPreference 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 <ListPreference 28 android:key="sleep_policy" 29 android:title="@string/wifi_setting_sleep_policy_title" 30 android:persistent="false" 31 android:entries="@array/wifi_sleep_policy_entries" 32 android:entryValues="@array/wifi_sleep_policy_values" 33 /> 34 <CheckBoxPreference 35 android:key="wifi_scan_always_available" 36 android:title="@string/wifi_scan_always_available" 37 android:summary="@string/wifi_scan_always_available_summary" 38 android:persistent="false" /> 39 40 <!-- android:dependency="enable_wifi" --> 41 <CheckBoxPreference 42 android:key="wifi_poor_network_detection" 43 android:title="@string/wifi_poor_network_detection" 44 android:summary="@string/wifi_poor_network_detection_summary" 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 56 <Preference 57 android:key="install_credentials" 58 android:title="@string/wifi_install_credentials" 59 android:persistent="false" /> 60 61 <CheckBoxPreference 62 android:key="suspend_optimizations" 63 android:title="@string/wifi_suspend_optimizations" 64 android:summary="@string/wifi_suspend_optimizations_summary" 65 android:persistent="false" /> 66 67 <Preference android:key="mac_address" 68 style="?android:attr/preferenceInformationStyle" 69 android:title="@string/wifi_advanced_mac_address_title" 70 /> 71 72 <Preference android:key="current_ip_address" 73 style="?android:attr/preferenceInformationStyle" 74 android:title="@string/wifi_advanced_ip_address_title" 75 /> 76 77 </PreferenceScreen> 78