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