2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-07-30 22:51:30 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-07-30 22:51:30 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_general">
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="grant_new_contacts"
|
|
|
|
android:summary="@string/pref_grant_presence_updates_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_grant_presence_updates"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="Mobile"
|
|
|
|
android:entries="@array/resources"
|
|
|
|
android:entryValues="@array/resources"
|
|
|
|
android:key="resource"
|
|
|
|
android:summary="@string/pref_xmpp_resource_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_xmpp_resource"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="524288"
|
|
|
|
android:entries="@array/filesizes"
|
|
|
|
android:entryValues="@array/filesizes_values"
|
|
|
|
android:key="auto_accept_file_size"
|
|
|
|
android:summary="@string/pref_accept_files_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_accept_files"/>
|
2016-01-09 15:17:39 +00:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="auto"
|
|
|
|
android:entries="@array/picture_compression_entries"
|
|
|
|
android:entryValues="@array/picture_compression_values"
|
|
|
|
android:key="picture_compression"
|
|
|
|
android:summary="@string/pref_picture_compression_summary"
|
|
|
|
android:title="@string/pref_picture_compression"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="confirm_messages"
|
|
|
|
android:summary="@string/pref_confirm_messages_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_confirm_messages"/>
|
2015-02-21 10:06:52 +00:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="chat_states"
|
|
|
|
android:summary="@string/pref_chat_states_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_chat_states"/>
|
2015-02-21 10:06:52 +00:00
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
</PreferenceCategory>
|
2015-04-14 13:53:50 +00:00
|
|
|
<PreferenceCategory
|
2015-07-30 22:51:30 +00:00
|
|
|
android:key="notifications"
|
|
|
|
android:title="@string/pref_notification_settings">
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="show_notification"
|
|
|
|
android:summary="@string/pref_notifications_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_notifications"/>
|
|
|
|
<PreferenceScreen
|
2014-12-14 07:02:17 +00:00
|
|
|
android:dependency="show_notification"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:key="quiet_hours"
|
2014-12-14 07:02:17 +00:00
|
|
|
android:summary="@string/pref_quiet_hours_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/title_pref_quiet_hours">
|
2014-12-14 07:02:17 +00:00
|
|
|
<CheckBoxPreference
|
2015-07-30 22:51:30 +00:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="enable_quiet_hours"
|
|
|
|
android:summary="@string/pref_quiet_hours_summary"
|
|
|
|
android:title="@string/title_pref_enable_quiet_hours"/>
|
2014-12-14 07:02:17 +00:00
|
|
|
<eu.siacs.conversations.ui.TimePreference
|
2015-07-30 22:51:30 +00:00
|
|
|
android:dependency="enable_quiet_hours"
|
|
|
|
android:key="quiet_hours_start"
|
|
|
|
android:negativeButtonText="@string/cancel"
|
|
|
|
android:positiveButtonText="@string/set"
|
|
|
|
android:title="@string/title_pref_quiet_hours_start_time"/>
|
2014-12-14 07:02:17 +00:00
|
|
|
<eu.siacs.conversations.ui.TimePreference
|
2015-07-30 22:51:30 +00:00
|
|
|
android:dependency="enable_quiet_hours"
|
|
|
|
android:key="quiet_hours_end"
|
|
|
|
android:negativeButtonText="@string/cancel"
|
|
|
|
android:positiveButtonText="@string/set"
|
|
|
|
android:title="@string/title_pref_quiet_hours_end_time"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
<CheckBoxPreference
|
2014-10-22 16:38:44 +00:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:dependency="show_notification"
|
|
|
|
android:key="vibrate_on_notification"
|
|
|
|
android:summary="@string/pref_vibrate_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_vibrate"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<RingtonePreference
|
|
|
|
android:defaultValue="content://settings/system/notification_sound"
|
|
|
|
android:dependency="show_notification"
|
|
|
|
android:key="notification_ringtone"
|
|
|
|
android:ringtoneType="notification"
|
|
|
|
android:summary="@string/pref_sound_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_sound"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
2015-07-30 22:51:30 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_ui_options">
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="use_subject"
|
|
|
|
android:summary="@string/pref_conference_name_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_conference_name"/>
|
2015-08-24 18:56:25 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="use_white_background"
|
2016-01-09 15:17:39 +00:00
|
|
|
android:summary="@string/pref_use_white_background_summary"
|
|
|
|
android:title="@string/pref_use_white_background"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="use_larger_font"
|
|
|
|
android:summary="@string/pref_use_larger_font_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_use_larger_font"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="send_button_status"
|
|
|
|
android:summary="@string/pref_use_send_button_to_indicate_status_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_use_send_button_to_indicate_status"/>
|
2015-05-02 09:38:56 +00:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="recent"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:dialogTitle="@string/choose_quick_action"
|
2015-05-02 09:38:56 +00:00
|
|
|
android:entries="@array/quick_actions"
|
|
|
|
android:entryValues="@array/quick_action_values"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:key="quick_action"
|
2015-05-02 09:38:56 +00:00
|
|
|
android:summary="@string/pref_quick_action_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_quick_action"/>
|
2014-11-16 16:21:21 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="show_dynamic_tags"
|
|
|
|
android:summary="@string/pref_show_dynamic_tags_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_show_dynamic_tags"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
</PreferenceCategory>
|
2015-04-14 13:53:50 +00:00
|
|
|
<PreferenceCategory
|
2015-07-30 22:51:30 +00:00
|
|
|
android:key="advanced"
|
|
|
|
android:title="@string/pref_advanced_options">
|
2014-10-22 16:38:44 +00:00
|
|
|
<PreferenceScreen
|
2015-07-30 22:51:30 +00:00
|
|
|
android:key="expert"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:summary="@string/pref_expert_options_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_expert_options">
|
2016-02-16 08:57:59 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_security_settings">
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="dont_save_encrypted"
|
|
|
|
android:summary="@string/pref_dont_save_encrypted_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_dont_save_encrypted"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="dont_trust_system_cas"
|
|
|
|
android:summary="@string/pref_dont_trust_system_cas_summary"
|
|
|
|
android:title="@string/pref_dont_trust_system_cas_title"/>
|
|
|
|
<Preference
|
|
|
|
android:key="remove_trusted_certificates"
|
|
|
|
android:summary="@string/pref_remove_trusted_certificates_summary"
|
|
|
|
android:title="@string/pref_remove_trusted_certificates_title"/>
|
2016-02-16 08:57:59 +00:00
|
|
|
<CheckBoxPreference
|
2016-02-26 08:48:58 +00:00
|
|
|
android:defaultValue="false"
|
2016-02-16 08:57:59 +00:00
|
|
|
android:key="allow_message_correction"
|
|
|
|
android:title="@string/pref_allow_message_correction"
|
|
|
|
android:summary="@string/pref_allow_message_correction_summary"/>
|
2015-07-30 22:51:30 +00:00
|
|
|
</PreferenceCategory>
|
2015-12-01 21:41:58 +00:00
|
|
|
<PreferenceCategory
|
2016-01-09 15:17:39 +00:00
|
|
|
android:key="connection_options"
|
|
|
|
android:title="@string/pref_connection_options">
|
2015-11-28 19:11:38 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="use_tor"
|
2016-01-09 15:17:39 +00:00
|
|
|
android:summary="@string/pref_use_tor_summary"
|
|
|
|
android:title="@string/pref_use_tor"/>
|
2016-01-25 20:17:53 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="show_connection_options"
|
|
|
|
android:summary="@string/pref_show_connection_options_summary"
|
|
|
|
android:title="@string/pref_show_connection_options"/>
|
2015-11-28 19:11:38 +00:00
|
|
|
</PreferenceCategory>
|
2015-07-30 22:51:30 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_input_options">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="enter_is_send"
|
|
|
|
android:summary="@string/pref_enter_is_send_summary"
|
|
|
|
android:title="@string/pref_enter_is_send"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="display_enter_key"
|
|
|
|
android:summary="@string/pref_display_enter_key_summary"
|
|
|
|
android:title="@string/pref_display_enter_key"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
</PreferenceCategory>
|
2015-10-07 22:35:04 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_presence_settings">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="away_when_screen_off"
|
|
|
|
android:summary="@string/pref_away_when_screen_off_summary"
|
|
|
|
android:title="@string/pref_away_when_screen_off"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="xa_on_silent_mode"
|
|
|
|
android:summary="@string/pref_xa_on_silent_mode_summary"
|
|
|
|
android:title="@string/pref_xa_on_silent_mode"/>
|
|
|
|
</PreferenceCategory>
|
2015-07-30 22:51:30 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_expert_options_other">
|
2016-02-01 12:54:08 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="autojoin"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:title="@string/pref_autojoin"
|
|
|
|
android:summary="@string/pref_autojoin_summary"
|
|
|
|
/>
|
2014-10-22 16:38:44 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="indicate_received"
|
|
|
|
android:summary="@string/pref_use_indicate_received_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_use_indicate_received"/>
|
2014-11-12 13:41:43 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="keep_foreground_service"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:summary="@string/pref_keep_foreground_service_summary"
|
|
|
|
android:title="@string/pref_keep_foreground_service"/>
|
2015-09-20 21:33:42 +00:00
|
|
|
<eu.siacs.conversations.ui.ExportLogsPreference
|
2016-01-09 15:17:39 +00:00
|
|
|
android:key="export_logs"
|
|
|
|
android:summary="@string/pref_export_logs_summary"
|
|
|
|
android:title="@string/pref_export_logs"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="never_send"
|
|
|
|
android:summary="@string/pref_never_send_crash_summary"
|
2015-07-30 22:51:30 +00:00
|
|
|
android:title="@string/pref_never_send_crash"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
</PreferenceCategory>
|
2015-07-30 22:51:30 +00:00
|
|
|
<eu.siacs.conversations.ui.AboutPreference
|
|
|
|
android:summary="@string/pref_about_conversations_summary"
|
|
|
|
android:title="@string/title_activity_about"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
</PreferenceScreen>
|