2014-01-24 02:04:05 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<PreferenceCategory
|
2014-03-21 22:14:52 +01:00
|
|
|
android:title="General">
|
2014-02-23 21:33:37 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="grant_new_contacts"
|
2014-05-13 11:23:11 +02:00
|
|
|
android:title="@string/pref_grant_presence_updates"
|
|
|
|
android:summary="@string/pref_grant_presence_updates_summary"
|
2014-02-23 21:33:37 +01:00
|
|
|
android:defaultValue="true"
|
|
|
|
/>
|
2014-03-21 22:14:52 +01:00
|
|
|
<ListPreference
|
|
|
|
android:key="resource"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_xmpp_resource"
|
|
|
|
android:summary="@string/pref_xmpp_resource_summary"
|
2014-03-21 22:14:52 +01:00
|
|
|
android:entries="@array/resources"
|
|
|
|
android:entryValues="@array/resources"
|
|
|
|
android:defaultValue="Mobile"/>
|
2014-04-13 18:09:40 +02:00
|
|
|
<ListPreference
|
|
|
|
android:key="auto_accept_file_size"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_accept_files"
|
|
|
|
android:summary="@string/pref_accept_files_summary"
|
2014-04-13 18:09:40 +02:00
|
|
|
android:entries="@array/filesizes"
|
|
|
|
android:entryValues="@array/filesizes_values"
|
|
|
|
android:defaultValue="524288"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_notification_settings">
|
2014-01-24 02:04:05 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="show_notification"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_notifications"
|
|
|
|
android:summary="@string/pref_notifications_summary"
|
2014-03-08 04:18:42 +01:00
|
|
|
android:defaultValue="true"
|
2014-01-24 02:04:05 +01:00
|
|
|
/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="vibrate_on_notification"
|
|
|
|
android:dependency="show_notification"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_vibrate"
|
|
|
|
android:summary="@string/pref_vibrate_summary"
|
2014-03-12 14:55:23 +01:00
|
|
|
android:defaultValue="true"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
<RingtonePreference
|
|
|
|
android:key="notification_ringtone"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_sound"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:ringtoneType="notification"
|
|
|
|
android:dependency="show_notification"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:summary="@string/pref_sound_summary"
|
2014-03-08 04:18:42 +01:00
|
|
|
android:defaultValue="content://settings/system/notification_sound"/>
|
2014-02-23 21:33:37 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notify_in_conversation_when_highlighted"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_conference_notifications"
|
|
|
|
android:summary="@string/pref_conference_notifications_summary"/>
|
2014-04-07 23:58:59 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notification_grace_period_after_carbon_received"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_notification_grace_period"
|
|
|
|
android:summary="@string/pref_notification_grace_period_summary"
|
2014-04-07 23:58:59 +02:00
|
|
|
android:defaultValue="true"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_ui_options">
|
2014-02-10 15:24:34 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="show_phone_selfcontact_picture"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_use_phone_self_picture"
|
2014-06-01 23:45:20 +02:00
|
|
|
android:summary="@string/pref_use_phone_self_picture_summary"
|
2014-02-10 15:24:34 +01:00
|
|
|
android:defaultValue="true"/>
|
2014-03-14 22:40:56 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="use_subject_in_muc"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_conference_name"
|
|
|
|
android:summary="@string/pref_conference_name_summary"
|
2014-03-14 22:40:56 +01:00
|
|
|
android:defaultValue="true"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceCategory>
|
2014-03-27 16:09:23 +01:00
|
|
|
<PreferenceCategory
|
2014-05-16 22:35:58 +02:00
|
|
|
android:title="@string/pref_advanced_options">
|
2014-03-27 16:09:23 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="never_send"
|
2014-05-11 13:55:15 +02:00
|
|
|
android:title="@string/pref_never_send_crash"
|
|
|
|
android:summary="@string/pref_never_send_crash_summary"
|
2014-03-27 16:09:23 +01:00
|
|
|
android:defaultValue="false"/>
|
|
|
|
</PreferenceCategory>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceScreen>
|