blob: abb499514b42e1402383834fd7a446253c240204 [file] [log] [blame]
Andrew Leece8ae2a2014-09-10 10:41:48 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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:phone="http://schemas.android.com/apk/res/com.android.phone"
Jay Shraunera4f952c2014-10-23 10:14:12 -070019 android:title="@string/phone_accounts">
Andrew Leece8ae2a2014-09-10 10:41:48 -070020
21 <com.android.phone.settings.AccountSelectionPreference
22 android:key="default_outgoing_account"
23 android:title="@string/phone_accounts_make_calls_with"
24 android:defaultValue=""
25 android:persistent="false" />
26
27 <PreferenceCategory
28 android:key="phone_accounts_call_assistant_settings_category_key"
29 android:title="@string/wifi_calling_call_assistant"
30 android:persistent="false">
31
32 <com.android.phone.settings.AccountSelectionPreference
33 android:key="wifi_calling_call_assistant_preference"
34 android:title="@string/wifi_calling_call_assistant"
Andrew Lee4d37f522014-09-23 16:38:08 -070035 android:summary="@string/wifi_calling_call_assistant_none" />
Andrew Leece8ae2a2014-09-10 10:41:48 -070036
37 <Preference
38 android:key="wifi_calling_configure_call_assistant_preference"
39 android:title="@string/wifi_calling_call_assistant_configure"
40 android:persistent="false" />
41
42 </PreferenceCategory>
43
44 <PreferenceCategory
45 android:key="phone_accounts_sip_settings_category_key"
46 android:title="@string/sip_settings"
47 android:persistent="false">
48
Andrew Lee4d37f522014-09-23 16:38:08 -070049 <PreferenceScreen
50 android:title="@string/sip_accounts"
51 android:persistent="false">
52
53 <intent android:action="android.intent.action.MAIN"
54 android:targetPackage="com.android.phone"
55 android:targetClass="com.android.services.telephony.sip.SipSettings" />
56
57 </PreferenceScreen>
58
Andrew Leece8ae2a2014-09-10 10:41:48 -070059 <ListPreference
60 android:key="use_sip_calling_options_key"
61 android:title="@string/sip_call_options_title"
62 android:persistent="true"
63 android:entries="@array/sip_call_options_entries"
64 android:entryValues="@array/sip_call_options_values"/>
65
Andrew Lee4d37f522014-09-23 16:38:08 -070066 <CheckBoxPreference
67 android:key="sip_receive_calls_key"
68 android:title="@string/sip_receive_calls"
69 android:summary="@string/sip_receive_calls_summary"
70 android:persistent="true"/>
71
Andrew Leece8ae2a2014-09-10 10:41:48 -070072 </PreferenceCategory>
73
74</PreferenceScreen>