forked from signalapp/Signal-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't redisplay notifications after they have been dismissed
Fixes signalapp#5751 Fixes signalapp#6218 // FREEBIE
- Loading branch information
Showing
18 changed files
with
141 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
src/org/thoughtcrime/securesms/notifications/DeleteNotificationReceiver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package org.thoughtcrime.securesms.notifications; | ||
|
||
|
||
import android.content.BroadcastReceiver; | ||
import android.content.Context; | ||
import android.content.Intent; | ||
import android.os.AsyncTask; | ||
|
||
import org.thoughtcrime.securesms.database.DatabaseFactory; | ||
|
||
public class DeleteNotificationReceiver extends BroadcastReceiver { | ||
|
||
public static String DELETE_NOTIFICATION_ACTION = "org.thoughtcrime.securesms.DELETE_NOTIFICATION"; | ||
|
||
public static String EXTRA_IDS = "message_ids"; | ||
public static String EXTRA_MMS = "is_mms"; | ||
|
||
@Override | ||
public void onReceive(final Context context, Intent intent) { | ||
if (DELETE_NOTIFICATION_ACTION.equals(intent.getAction())) { | ||
MessageNotifier.clearReminder(context); | ||
|
||
final long[] ids = intent.getLongArrayExtra(EXTRA_IDS); | ||
final boolean[] mms = intent.getBooleanArrayExtra(EXTRA_MMS); | ||
|
||
if (ids == null || mms == null || ids.length != mms.length) return; | ||
|
||
new AsyncTask<Void, Void, Void>() { | ||
@Override | ||
protected Void doInBackground(Void... params) { | ||
for (int i=0;i<ids.length;i++) { | ||
if (!mms[i]) DatabaseFactory.getSmsDatabase(context).markAsNotified(ids[i]); | ||
else DatabaseFactory.getMmsDatabase(context).markAsNotified(ids[i]); | ||
} | ||
|
||
return null; | ||
} | ||
}.execute(); | ||
} | ||
} | ||
} |
Oops, something went wrong.