2009-03-04 03:32:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2008 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">
|
|
|
|
|
2011-07-22 22:15:47 +00:00
|
|
|
<EditTextPreference
|
|
|
|
android:key="account_description"
|
|
|
|
android:title="@string/account_settings_description_label"
|
|
|
|
android:summary=""
|
|
|
|
android:dialogTitle="@string/account_settings_description_label"
|
|
|
|
android:inputType="textCapWords" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="account_name"
|
|
|
|
android:title="@string/account_settings_name_label"
|
|
|
|
android:summary=""
|
|
|
|
android:dialogTitle="@string/account_settings_name_label"
|
|
|
|
android:inputType="textPersonName|textCapWords" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="account_signature"
|
2013-06-18 23:25:22 +00:00
|
|
|
android:title="@string/preferences_signature_title"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:dialogTitle="@string/preferences_signature_dialog_title" />
|
2011-07-22 22:15:47 +00:00
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="account_quick_responses"
|
|
|
|
android:title="@string/account_settings_edit_quick_responses_label"
|
|
|
|
android:summary="@string/account_settings_edit_quick_responses_summary" />
|
2010-02-02 22:37:54 +00:00
|
|
|
|
2011-07-22 22:15:47 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="data_usage"
|
|
|
|
android:title="@string/account_settings_data_usage">
|
2011-06-01 17:09:26 +00:00
|
|
|
|
2010-02-02 22:37:54 +00:00
|
|
|
<ListPreference
|
2009-03-04 03:32:22 +00:00
|
|
|
android:key="account_check_frequency"
|
2011-07-22 22:15:47 +00:00
|
|
|
android:order="1"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:title="@string/account_settings_mail_check_frequency_label"
|
|
|
|
android:entries="@array/account_settings_check_frequency_entries"
|
|
|
|
android:entryValues="@array/account_settings_check_frequency_values"
|
|
|
|
android:dialogTitle="@string/account_settings_mail_check_frequency_label" />
|
|
|
|
|
2011-07-22 22:15:47 +00:00
|
|
|
<!-- Reserve order#2 here for window size (if inserted) -->
|
2010-11-05 04:13:45 +00:00
|
|
|
|
2011-07-22 22:15:47 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="account_sync_email"
|
2011-08-04 00:22:37 +00:00
|
|
|
android:order="3"
|
2011-07-22 22:15:47 +00:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:title="@string/account_settings_sync_email_enable"
|
|
|
|
android:summary="@string/account_settings_sync_email_summary" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="account_sync_contacts"
|
2011-08-04 00:22:37 +00:00
|
|
|
android:order="4"
|
2011-07-22 22:15:47 +00:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:title="@string/account_settings_sync_contacts_enable"
|
|
|
|
android:summary="@string/account_settings_sync_contacts_summary" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="account_sync_calendar"
|
2011-08-04 00:22:37 +00:00
|
|
|
android:order="5"
|
2011-07-22 22:15:47 +00:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:title="@string/account_settings_sync_calendar_enable"
|
|
|
|
android:summary="@string/account_settings_sync_calendar_summary" />
|
2011-08-04 00:22:37 +00:00
|
|
|
|
|
|
|
<!-- (will hide on POP3 accounts) -->
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="account_background_attachments"
|
|
|
|
android:order="6"
|
|
|
|
android:title="@string/account_settings_background_attachments_label"
|
|
|
|
android:summary="@string/account_settings_background_attachments_summary" />
|
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2013-03-28 00:04:27 +00:00
|
|
|
<!-- This category is enabled after the folder preferences are loaded -->
|
2010-11-05 04:13:45 +00:00
|
|
|
<PreferenceCategory
|
2013-03-28 00:04:27 +00:00
|
|
|
android:enabled="false"
|
2010-11-05 04:13:45 +00:00
|
|
|
android:key="account_notifications"
|
|
|
|
android:title="@string/account_settings_notifications">
|
2009-03-04 03:32:22 +00:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
2012-12-11 18:37:35 +00:00
|
|
|
android:key="notifications-enabled"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:title="@string/account_settings_notify_label"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:summary="@string/account_settings_notify_summary" />
|
|
|
|
|
2012-12-11 18:37:35 +00:00
|
|
|
<Preference
|
|
|
|
android:key="notification-ringtone"
|
|
|
|
android:dependency="notifications-enabled"
|
|
|
|
android:title="@string/account_settings_ringtone" />
|
2009-03-04 03:32:22 +00:00
|
|
|
|
2012-11-29 02:14:06 +00:00
|
|
|
<CheckBoxPreference
|
2012-12-11 18:37:35 +00:00
|
|
|
android:key="notification-vibrate"
|
|
|
|
android:dependency="notifications-enabled"
|
2012-11-29 02:14:06 +00:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:title="@string/account_settings_vibrate_when_label" />
|
2009-03-04 03:32:22 +00:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2012-09-10 02:07:53 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="system_folders"
|
|
|
|
android:title="@string/system_folders_title">
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="system_folders_trash"
|
|
|
|
android:layout="?android:attr/preferenceLayoutChild"
|
|
|
|
android:title="@string/system_folders_trash_title"
|
|
|
|
android:summary="@string/system_folders_trash_summary"
|
|
|
|
android:dialogTitle="@string/system_folders_trash_dlg"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="system_folders_sent"
|
|
|
|
android:layout="?android:attr/preferenceLayoutChild"
|
|
|
|
android:title="@string/system_folders_sent_title"
|
|
|
|
android:summary="@string/system_folders_sent_summary"
|
|
|
|
android:dialogTitle="@string/system_folders_sent_dlg"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2011-06-01 17:09:26 +00:00
|
|
|
<PreferenceCategory
|
2009-05-04 17:17:27 +00:00
|
|
|
android:key="account_servers"
|
|
|
|
android:title="@string/account_settings_servers">
|
2011-06-01 17:09:26 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
<PreferenceScreen
|
|
|
|
android:key="incoming"
|
2011-02-16 22:19:34 +00:00
|
|
|
android:title="@string/account_settings_incoming_label"
|
|
|
|
android:summary="@string/account_settings_incoming_summary" />
|
2009-03-04 03:32:22 +00:00
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="outgoing"
|
2011-02-16 22:19:34 +00:00
|
|
|
android:title="@string/account_settings_outgoing_label"
|
|
|
|
android:summary="@string/account_settings_outgoing_summary" />
|
2009-03-04 03:32:22 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2010-08-19 23:28:52 +00:00
|
|
|
<PreferenceCategory
|
2012-06-28 17:40:46 +00:00
|
|
|
android:key="account_policies"
|
|
|
|
android:title="@string/account_settings_policies">
|
|
|
|
|
|
|
|
<com.android.email.activity.setup.PolicyListPreference
|
|
|
|
android:key="policies_enforced"
|
|
|
|
android:title="@string/account_settings_enforced_label"
|
|
|
|
android:summary="@string/account_settings_enforced_summary" />
|
|
|
|
|
|
|
|
<com.android.email.activity.setup.PolicyListPreference
|
|
|
|
android:key="policies_unsupported"
|
|
|
|
android:title="@string/account_settings_unsupported_label"
|
|
|
|
android:summary="@string/account_settings_unsupported_summary" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="policies_retry_account"
|
|
|
|
android:title="@string/account_settings_retry_label"
|
|
|
|
android:summary="@string/account_settings_retry_summary" />
|
2010-08-19 23:28:52 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
</PreferenceScreen>
|