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