1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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    <Preference
19        android:icon="@null"
20        android:key="myInfo"
21        android:title="@string/settings_my_info_title"/>
22
23    <Preference
24        android:icon="@null"
25        android:key="accounts"
26        android:title="@string/settings_accounts">
27    </Preference>
28
29    <com.android.contacts.preference.DefaultAccountPreference
30        android:icon="@null"
31        android:key="defaultAccount"
32        android:title="@string/default_editor_account"
33        android:dialogTitle="@string/default_editor_account" />
34
35    <Preference
36        android:icon="@null"
37        android:key="customContactsFilter"
38        android:title="@string/menu_contacts_filter"/>
39
40    <com.android.contacts.preference.SortOrderPreference
41        android:icon="@null"
42        android:key="sortOrder"
43        android:title="@string/display_options_sort_list_by"
44        android:dialogTitle="@string/display_options_sort_list_by" />
45
46    <com.android.contacts.preference.DisplayOrderPreference
47        android:icon="@null"
48        android:key="displayOrder"
49        android:title="@string/display_options_view_names_as"
50        android:dialogTitle="@string/display_options_view_names_as" />
51
52    <com.android.contacts.preference.PhoneticNameDisplayPreference
53        android:icon="@null"
54        android:key="phoneticNameDisplay"
55        android:title="@string/display_options_phonetic_name_fields"
56        android:dialogTitle="@string/display_options_phonetic_name_fields"/>
57
58    <Preference
59        android:icon="@null"
60        android:key="import"
61        android:title="@string/menu_import"/>
62
63    <Preference
64        android:icon="@null"
65        android:key="export"
66        android:title="@string/menu_export"/>
67
68    <Preference
69        android:icon="@null"
70        android:key="blockedNumbers"
71        android:title="@string/menu_blocked_numbers" />
72
73    <Preference
74        android:icon="@null"
75        android:key="about"
76        android:title="@string/setting_about"
77        android:order="@integer/about_contacts_order_number"/>
78</PreferenceScreen>
79