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 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 17 18 <PreferenceScreen 19 android:key="cdma_lte_data_service_key" 20 android:title="@string/cdma_lte_data_service"> 21 </PreferenceScreen> 22 23 <com.android.phone.MobileDataPreference 24 android:key="mobile_data_enable" 25 android:title="@string/mobile_data_settings_title" 26 android:summary="@string/mobile_data_settings_summary"/> 27 28 <com.android.phone.RestrictedSwitchPreference 29 android:key="button_roaming_key" 30 android:title="@string/roaming" 31 android:persistent="false" 32 android:summaryOn="@string/roaming_enable" 33 android:summaryOff="@string/roaming_disable"/> 34 35 <com.android.phone.DataUsagePreference 36 android:key="data_usage_summary" 37 android:title="@string/data_usage_title" /> 38 39 <com.android.phone.AdvancedOptionsPreference 40 android:key="advanced_options"/> 41 42 <SwitchPreference 43 android:key="enhanced_4g_lte" 44 android:title="@string/enhanced_4g_lte_mode_title" 45 android:persistent="false" 46 android:summary="@string/enhanced_4g_lte_mode_summary"/> 47 48 <ListPreference 49 android:key="preferred_network_mode_key" 50 android:title="@string/preferred_network_mode_title" 51 android:summary="@string/preferred_network_mode_summary" 52 android:entries="@array/preferred_network_mode_choices" 53 android:entryValues="@array/preferred_network_mode_values" 54 android:dialogTitle="@string/preferred_network_mode_dialogtitle" /> 55 56 <ListPreference 57 android:key="enabled_networks_key" 58 android:title="@string/preferred_network_mode_title" 59 android:summary="@string/preferred_network_mode_summary" 60 android:entries="@array/enabled_networks_choices" 61 android:entryValues="@array/enabled_networks_values" 62 android:dialogTitle="@string/preferred_network_mode_dialogtitle" /> 63 64 <Preference 65 android:key="carrier_settings_euicc_key" 66 android:title="@string/carrier_settings_euicc" /> 67 68 <PreferenceCategory 69 android:key="calling" 70 android:title="@string/call_category"> 71 72 <PreferenceScreen 73 android:key="wifi_calling_key" 74 android:title="@string/wifi_calling_settings_title"> 75 76 <intent android:action="android.intent.action.MAIN" 77 android:targetPackage="com.android.settings" 78 android:targetClass="com.android.settings.Settings$WifiCallingSettingsActivity"> 79 <extra android:name="show_drawer_menu" android:value="true" /> 80 </intent> 81 82 </PreferenceScreen> 83 84 <SwitchPreference 85 android:key="video_calling_key" 86 android:title="@string/video_calling_settings_title" 87 android:persistent="true"/> 88 89 </PreferenceCategory> 90 91 </PreferenceScreen> 92