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"
|
|
|
|
|
android:title="Grant presence updates"
|
|
|
|
|
android:summary="Preemptivly grant and ask for presence subscription for contacts you created"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
/>
|
2014-03-21 22:14:52 +01:00
|
|
|
|
<ListPreference
|
|
|
|
|
android:key="resource"
|
|
|
|
|
android:title="XMPP Resource"
|
|
|
|
|
android:summary="The name this client identifies itself"
|
|
|
|
|
android:entries="@array/resources"
|
|
|
|
|
android:entryValues="@array/resources"
|
|
|
|
|
android:defaultValue="Mobile"/>
|
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"
|
2014-03-08 04:18:42 +01:00
|
|
|
|
android:summary="Notify when a new message arrives"
|
|
|
|
|
android:defaultValue="true"
|
2014-01-24 02:04:05 +01:00
|
|
|
|
/>
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="vibrate_on_notification"
|
|
|
|
|
android:dependency="show_notification"
|
|
|
|
|
android:title="Vibrate"
|
2014-03-12 14:55:23 +01:00
|
|
|
|
android:summary="Also vibrate when a new message arrives"
|
|
|
|
|
android:defaultValue="true"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
|
<RingtonePreference
|
|
|
|
|
android:key="notification_ringtone"
|
|
|
|
|
android:title="Sound"
|
|
|
|
|
android:ringtoneType="notification"
|
|
|
|
|
android:dependency="show_notification"
|
2014-03-08 04:18:42 +01:00
|
|
|
|
android:summary="Play ringtone with notification"
|
|
|
|
|
android:defaultValue="content://settings/system/notification_sound"/>
|
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-03-14 22:40:56 +01:00
|
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="use_subject_in_muc"
|
|
|
|
|
android:title="Conference Name"
|
|
|
|
|
android:summary="Use room’s subject to identify Conferences"
|
|
|
|
|
android:defaultValue="true"/>
|
2014-01-24 02:04:05 +01:00
|
|
|
|
</PreferenceCategory>
|
2014-03-27 16:09:23 +01:00
|
|
|
|
<PreferenceCategory
|
|
|
|
|
android:title="Advanced Options">
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="never_send"
|
|
|
|
|
android:title="Never send crash reports"
|
|
|
|
|
android:summary="By sending in stack traces you are helping the ongoing development of Conversations"
|
|
|
|
|
android:defaultValue="false"/>
|
|
|
|
|
</PreferenceCategory>
|
2014-01-24 02:04:05 +01:00
|
|
|
|
</PreferenceScreen>
|