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-02-23 21:33:37 +01:00
|
|
|
android:title="Security and Privacy Options">
|
2014-01-24 02:04:05 +01:00
|
|
|
<ListPreference
|
|
|
|
android:key="default_conversation_encryption_type"
|
|
|
|
android:title="Default conversation encryption"
|
|
|
|
android:dialogTitle="Default conversation encryption"
|
|
|
|
android:entries="@array/conversation_encryption_type_entries"
|
|
|
|
android:entryValues="@array/conversation_encryption_type_values"
|
2014-02-23 21:33:37 +01:00
|
|
|
android:defaultValue="none"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="grant_new_contacts"
|
|
|
|
android:title="Grant presence updates"
|
|
|
|
android:summary="Preemptivly grant and ask for presence subscription for contacts you created"
|
|
|
|
android:defaultValue="true"
|
|
|
|
/>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
2014-02-23 21:33:37 +01:00
|
|
|
android:title="Notification Settings">
|
2014-01-24 02:04:05 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="show_notification"
|
|
|
|
android:title="Notification"
|
|
|
|
android:summary="Show notification in status bar when a new message arrives"
|
|
|
|
/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="vibrate_on_notification"
|
|
|
|
android:dependency="show_notification"
|
|
|
|
android:title="Vibrate"
|
|
|
|
android:summary="Also vibrate when a new message arrives"/>
|
|
|
|
<RingtonePreference
|
|
|
|
android:key="notification_ringtone"
|
|
|
|
android:title="Sound"
|
|
|
|
android:ringtoneType="notification"
|
|
|
|
android:dependency="show_notification"
|
|
|
|
android:summary="Play ringtone with notification"/>
|
2014-02-23 21:33:37 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notify_in_conversation_when_highlighted"
|
|
|
|
android:title="Conference notification"
|
|
|
|
android:summary="Always notify when a new conference message arrives instead of only when highlighted"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
2014-02-23 21:33:37 +01:00
|
|
|
android:title="UI Options">
|
2014-02-10 15:24:34 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="show_phone_selfcontact_picture"
|
|
|
|
android:title="Use Phones self contact picture"
|
|
|
|
android:summary="You may no longer be able to distinguish which account you are using in a conversation"
|
|
|
|
android:defaultValue="true"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|