108 lines
4.9 KiB
XML
108 lines
4.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2014 Google Inc.
|
|
Licensed to The Android Open Source Project.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gm="http://schemas.android.com/apk/res-auto" >
|
|
|
|
<com.android.mail.ui.settings.FancySummaryListPreference
|
|
android:defaultValue="@string/prefDefault_removal_action"
|
|
android:dialogTitle="@string/prefDialogTitle_removal_action"
|
|
android:entries="@array/prefEntries_removal_action"
|
|
android:entryValues="@array/prefValues_removal_action"
|
|
android:key="removal-action"
|
|
android:persistent="true"
|
|
android:title="@string/preference_removal_action_title"
|
|
gm:entrySummaries="@array/prefSummaries_removal_action_summary" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="conversation-list-swipe"
|
|
android:persistent="true"
|
|
android:summary="@string/preference_swipe_description"
|
|
android:title="@string/preference_swipe_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="conversation-list-sender-image"
|
|
android:persistent="true"
|
|
android:summary="@string/preference_sender_image_description"
|
|
android:title="@string/preference_sender_image_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="@bool/prefDefault_actionStripActionReplyAll"
|
|
android:key="default-reply-all"
|
|
android:persistent="true"
|
|
android:summary="@string/preferences_default_reply_all_summary"
|
|
android:title="@string/preferences_default_reply_all_title" />
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="conversation-overview-mode"
|
|
android:persistent="true"
|
|
android:summary="@string/preferences_conversation_mode_summary"
|
|
android:title="@string/preferences_conversation_mode_title" />
|
|
|
|
<com.android.mail.ui.settings.FancySummaryListPreference
|
|
android:defaultValue="@string/prefDefault_autoAdvance"
|
|
android:dialogTitle="@string/prefDialogTitle_autoAdvance"
|
|
android:entries="@array/prefEntries_autoAdvance"
|
|
android:entryValues="@array/prefValues_autoAdvance"
|
|
android:key="auto-advance-widget"
|
|
android:persistent="false"
|
|
android:title="@string/preference_advance_to_title"
|
|
gm:entrySummaries="@array/prefSummaries_autoAdvance" />
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/preference_header_suggested_contacts"
|
|
android:key="suggested-contacts">
|
|
|
|
<com.android.mail.ui.settings.FancySummaryListPreference
|
|
android:defaultValue="@string/prefDefault_suggestedContactsMode"
|
|
android:dialogTitle="@string/prefDialogTitle_suggestedContactsMode"
|
|
android:entries="@array/suggested_contacts_mode_entries"
|
|
android:entryValues="@array/suggested_contacts_mode_values"
|
|
android:key="suggested-contacts-mode"
|
|
android:title="@string/preference_suggested_contacts_mode"
|
|
gm:entrySummaries="@array/suggested_contacts_mode_summaries" />
|
|
|
|
<Preference
|
|
android:key="suggested-contacts-clear-all"
|
|
android:title="@string/preference_suggested_contacts_clear_all" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/preference_header_action_confirmations"
|
|
android:key="removal-actions-group">
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="confirm-delete"
|
|
android:persistent="true"
|
|
android:title="@string/preference_confirm_before_delete_title" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="confirm-archive"
|
|
android:persistent="true"
|
|
android:title="@string/preference_confirm_before_archive_title" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="confirm-send"
|
|
android:persistent="true"
|
|
android:title="@string/preference_confirm_before_send_title" />
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|