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 xmlns:phone="http://schemas.android.com/apk/res/com.android.phone" 18 android:title="@string/call_settings"> 19 20 <PreferenceScreen 21 android:key="phone_account_settings_preference_screen" 22 android:title="@string/phone_accounts"> 23 24 <intent 25 android:targetPackage="com.android.phone" 26 android:targetClass="com.android.phone.settings.PhoneAccountSettingsActivity"/> 27 28 </PreferenceScreen> 29 30 <PreferenceScreen 31 android:key="button_voicemail_category_key" 32 android:title="@string/voicemail" /> 33 34 <PreferenceScreen 35 android:key="button_fdn_key" 36 android:title="@string/fdn" 37 android:persistent="false" /> 38 39 <PreferenceScreen 40 android:key="@string/wifi_calling_settings_key" 41 android:title="@string/wifi_calling"> 42 43 <intent android:action="android.intent.action.MAIN" 44 android:targetPackage="com.android.settings" 45 android:targetClass="com.android.settings.Settings$WifiCallingSettingsActivity"> 46 <extra android:name="show_drawer_menu" android:value="true" /> 47 </intent> 48 49 </PreferenceScreen> 50 51 <SwitchPreference 52 android:key="button_enable_video_calling" 53 android:title="@string/enable_video_calling_title" 54 android:persistent="true" 55 android:defaultValue="true" /> 56 57 <SwitchPreference 58 android:key="button_auto_retry_key" 59 android:title="@string/auto_retry_mode_title" 60 android:persistent="false" 61 android:summary="@string/auto_retry_mode_summary"/> 62 63 <PreferenceScreen 64 android:key="button_gsm_more_expand_key" 65 android:title="@string/labelGSMMore" 66 android:summary="@string/sum_gsm_call_settings" 67 android:persistent="false" /> 68 69 <PreferenceScreen 70 android:key="button_cdma_more_expand_key" 71 android:title="@string/labelCDMAMore" 72 android:summary="@string/sum_cdma_call_settings" 73 android:persistent="false" /> 74 75 </PreferenceScreen> 76