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