diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2016-06-04 16:16:14 +0200 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2016-06-04 16:16:14 +0200 |
commit | 71e911717697078141c3669134ad9268e9753ea0 (patch) | |
tree | 93c9833d28048c15aefe4109105523a4a0e002d9 /src/main/res/xml/preferences.xml | |
parent | 6639d0f23bb983cae7234d6b15f9875464c67093 (diff) |
opt-in to send last userinteraction in presence
Diffstat (limited to '')
-rw-r--r-- | src/main/res/xml/preferences.xml | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/main/res/xml/preferences.xml b/src/main/res/xml/preferences.xml index fb0103ed..eb1ff571 100644 --- a/src/main/res/xml/preferences.xml +++ b/src/main/res/xml/preferences.xml @@ -15,6 +15,8 @@ android:key="resource" android:summary="@string/pref_xmpp_resource_summary" android:title="@string/pref_xmpp_resource"/> + </PreferenceCategory> + <PreferenceCategory android:title="@string/pref_privacy"> <CheckBoxPreference android:defaultValue="true" android:key="confirm_messages" @@ -26,11 +28,13 @@ android:key="chat_states" android:summary="@string/pref_chat_states_summary" android:title="@string/pref_chat_states"/> - - </PreferenceCategory> - <PreferenceCategory - android:key="notifications" - android:title="@string/pref_notification_settings"> + <CheckBoxPreference + android:defaultValue="false" + android:key="last_activity" + android:title="@string/pref_broadcast_last_activity" + android:summary="@string/pref_broadcast_last_activity_summary"/> + </PreferenceCategory> + <PreferenceCategory android:title="@string/pref_notification_settings"> <CheckBoxPreference android:defaultValue="true" android:key="show_notification" @@ -88,8 +92,7 @@ android:entryValues="@array/grace_periods_values" /> </PreferenceCategory> - <PreferenceCategory - android:title="@string/pref_attachments"> + <PreferenceCategory android:title="@string/pref_attachments"> <ListPreference android:defaultValue="524288" android:entries="@array/filesizes" |