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/wireless_networks_settings_title"> 19 20 <CheckBoxPreference 21 android:key="toggle_airplane" 22 android:title="@string/airplane_mode" 23 android:persistent="false" 24 android:disableDependentsState="true" /> 25 26 <com.android.settings.SmsListPreference 27 android:key="sms_application" 28 android:title="@string/sms_application_title" 29 android:persistent="false" /> 30 31 <CheckBoxPreference 32 android:key="toggle_nfc" 33 android:title="@string/nfc_quick_toggle_title" 34 android:summary="@string/nfc_quick_toggle_summary" 35 android:persistent="false" /> 36 37 <PreferenceScreen 38 android:fragment="com.android.settings.nfc.AndroidBeam" 39 android:key="android_beam_settings" 40 android:title="@string/android_beam_settings_title" /> 41 42 <PreferenceScreen 43 android:fragment="com.android.settings.TetherSettings" 44 android:key="tether_settings" 45 android:title="@string/tether_settings_title_all" /> 46 47 <PreferenceScreen 48 android:fragment="com.android.settings.vpn2.VpnSettings" 49 android:key="vpn_settings" 50 android:title="@string/vpn_settings_title" /> 51 52 <PreferenceScreen 53 android:key="mobile_network_settings" 54 android:title="@string/network_settings_title" 55 android:dependency="toggle_airplane"> 56 <intent 57 android:action="android.intent.action.MAIN" 58 android:targetPackage="com.android.phone" 59 android:targetClass="com.android.phone.MobileNetworkSettings" /> 60 </PreferenceScreen> 61 62 <Preference 63 android:key="manage_mobile_plan" 64 android:title="@string/manage_mobile_plan_title" 65 android:persistent="false" /> 66 67 <PreferenceScreen 68 android:key="wimax_settings" 69 android:title="@string/wimax_settings" > 70 <intent 71 android:action="android.intent.action.MAIN" 72 android:targetPackage="com.android.settings.wimax" 73 android:targetClass="com.android.settings.wimax.WimaxSettings" /> 74 </PreferenceScreen> 75 76 <CheckBoxPreference 77 android:key="toggle_nsd" 78 android:title="@string/nsd_quick_toggle_title" 79 android:summary="@string/nsd_quick_toggle_summary" 80 android:persistent="false" /> 81 82 <PreferenceScreen 83 android:fragment="com.android.settings.ProxySelector" 84 android:key="proxy_settings" 85 android:title="@string/proxy_settings_title" /> 86 87 <PreferenceScreen 88 android:key="cell_broadcast_settings" 89 android:title="@string/cell_broadcast_settings" > 90 <intent 91 android:action="android.intent.action.MAIN" 92 android:targetPackage="com.android.cellbroadcastreceiver" 93 android:targetClass="com.android.cellbroadcastreceiver.CellBroadcastSettings" /> 94 </PreferenceScreen> 95 96 </PreferenceScreen> 97