blob: 29845ed8b829fefe07527058de6b1ac3d9f003dd [file] [log] [blame]
Andrew Leee4ea1042014-08-13 17:10:43 -07001<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4 ~ Copyright (C) 2014 The Android Open Source Project
5 ~
6 ~ Licensed under the Apache License, Version 2.0 (the "License");
7 ~ you may not use this file except in compliance with the License.
8 ~ You may obtain a copy of the License at
9 ~
10 ~ http://www.apache.org/licenses/LICENSE-2.0
11 ~
12 ~ Unless required by applicable law or agreed to in writing, software
13 ~ distributed under the License is distributed on an "AS IS" BASIS,
14 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ~ See the License for the specific language governing permissions and
16 ~ limitations under the License
17 -->
18
19<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
20
21 <PreferenceCategory
22 android:key="dialer_contact_display_options_category_key"
23 android:title="@string/contact_display_options_category_title"
24 android:persistent="false">
25
26 <com.android.contacts.common.preference.SortOrderPreference
27 android:key="sortOrder"
28 android:title="@string/display_options_sort_list_by"
29 android:dialogTitle="@string/display_options_sort_list_by" />
30
31 <com.android.contacts.common.preference.DisplayOrderPreference
32 android:key="displayOrder"
33 android:title="@string/display_options_view_names_as"
34 android:dialogTitle="@string/display_options_view_names_as" />
35
36 </PreferenceCategory>
37
38 <PreferenceCategory
39 android:key="dialer_general_sounds_category_key"
40 android:title="@string/sounds_and_vibrate_category_title"
41 android:persistent="false">
42
43 <com.android.dialer.settings.DefaultRingtonePreference
44 android:key="button_ringtone_key"
45 android:title="@string/ringtone_title"
46 android:dialogTitle="@string/ringtone_title"
47 android:persistent="false"
48 android:ringtoneType="ringtone" />
49
50 <CheckBoxPreference
Andrew Leee4ea1042014-08-13 17:10:43 -070051 android:key="button_play_dtmf_tone"
52 android:title="@string/dtmf_tone_enable_title"
53 android:persistent="false"
54 android:defaultValue="true" />
55
Andrew Leed0d409e2014-08-21 15:20:48 -070056 <CheckBoxPreference
57 android:key="button_vibrate_on_ring"
58 android:title="@string/vibrate_on_ring_title"
59 android:persistent="false"
60 android:defaultValue="false" />
61
Andrew Leee4ea1042014-08-13 17:10:43 -070062 </PreferenceCategory>
63
Andrew Leef68494c2015-02-13 18:08:17 -080064</PreferenceScreen>