From 2cf7f82f07308c2b57774c3271cd1af6615dae53 Mon Sep 17 00:00:00 2001 From: Nikolai Rusakov Date: Tue, 8 Oct 2013 07:58:40 +0000 Subject: [PATCH] closes #367 - add option to disable audible inthread notifications --- res/values/strings.xml | 2 ++ res/xml/preferences.xml | 10 ++++++++++ .../securesms/ApplicationPreferencesActivity.java | 1 + .../securesms/notifications/MessageNotifier.java | 5 +++++ 4 files changed, 18 insertions(+) diff --git a/res/values/strings.xml b/res/values/strings.xml index 0999db8a5..de8a62cef 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -437,6 +437,8 @@ Select LED Blink Pattern Select LED Color Sound + In thread notifications + Play notification sound while in thread. Vibrate Also vibrate when notified minutes diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index f6b5a5354..d16631980 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -50,12 +50,22 @@ android:title="@string/preferences__sound" android:ringtoneType="notification" android:defaultValue="content://settings/system/notification_sound" /> + + + + + diff --git a/src/org/thoughtcrime/securesms/ApplicationPreferencesActivity.java b/src/org/thoughtcrime/securesms/ApplicationPreferencesActivity.java index 953e50fad..358b80fee 100644 --- a/src/org/thoughtcrime/securesms/ApplicationPreferencesActivity.java +++ b/src/org/thoughtcrime/securesms/ApplicationPreferencesActivity.java @@ -58,6 +58,7 @@ public class ApplicationPreferencesActivity extends PassphraseRequiredSherlockPr private static final int ENABLE_PASSPHRASE_ACTIVITY = 2; public static final String RINGTONE_PREF = "pref_key_ringtone"; + public static final String IN_THREAD_NOTIFICATION_PREF = "pref_key_inthread_notifications"; public static final String VIBRATE_PREF = "pref_key_vibrate"; public static final String NOTIFICATION_PREF = "pref_key_enable_notifications"; public static final String LED_COLOR_PREF = "pref_led_color"; diff --git a/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java b/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java index e13bbd74f..9351c5580 100644 --- a/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java +++ b/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java @@ -228,6 +228,11 @@ public class MessageNotifier { private static void sendInThreadNotification(Context context) { try { SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context); + + if (!sp.getBoolean(ApplicationPreferencesActivity.IN_THREAD_NOTIFICATION_PREF, true)) { + return; + } + String ringtone = sp.getString(ApplicationPreferencesActivity.RINGTONE_PREF, null); if (ringtone == null)