mark conversation as read when swiping a notification with quick reply away
This commit is contained in:
parent
4623fafa2e
commit
1aca12fdfd
2 changed files with 24 additions and 1 deletions
|
@ -176,6 +176,9 @@ public class NotificationService {
|
|||
|
||||
public void clear() {
|
||||
synchronized (notifications) {
|
||||
for(ArrayList<Message> messages : notifications.values()) {
|
||||
markAsReadIfHasDirectReply(messages);
|
||||
}
|
||||
notifications.clear();
|
||||
updateNotification(false);
|
||||
}
|
||||
|
@ -183,6 +186,7 @@ public class NotificationService {
|
|||
|
||||
public void clear(final Conversation conversation) {
|
||||
synchronized (notifications) {
|
||||
markAsReadIfHasDirectReply(conversation);
|
||||
notifications.remove(conversation.getUuid());
|
||||
final NotificationManager nm = (NotificationManager) mXmppConnectionService.getSystemService(Context.NOTIFICATION_SERVICE);
|
||||
nm.cancel(conversation.getUuid(), NOTIFICATION_ID);
|
||||
|
@ -190,6 +194,19 @@ public class NotificationService {
|
|||
}
|
||||
}
|
||||
|
||||
private void markAsReadIfHasDirectReply(final Conversation conversation) {
|
||||
markAsReadIfHasDirectReply(notifications.get(conversation.getUuid()));
|
||||
}
|
||||
|
||||
private void markAsReadIfHasDirectReply(final ArrayList<Message> messages) {
|
||||
if (messages != null && messages.size() > 0) {
|
||||
Message last = messages.get(messages.size() - 1);
|
||||
if (last.getStatus() != Message.STATUS_RECEIVED) {
|
||||
mXmppConnectionService.markRead(last.getConversation(), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void setNotificationColor(final Builder mBuilder) {
|
||||
mBuilder.setColor(mXmppConnectionService.getResources().getColor(R.color.primary));
|
||||
}
|
||||
|
|
|
@ -3024,7 +3024,13 @@ public class XmppConnectionService extends Service {
|
|||
}
|
||||
|
||||
public boolean markRead(final Conversation conversation) {
|
||||
mNotificationService.clear(conversation);
|
||||
return markRead(conversation,true);
|
||||
}
|
||||
|
||||
public boolean markRead(final Conversation conversation, boolean clear) {
|
||||
if (clear) {
|
||||
mNotificationService.clear(conversation);
|
||||
}
|
||||
final List<Message> readMessages = conversation.markRead();
|
||||
if (readMessages.size() > 0) {
|
||||
Runnable runnable = new Runnable() {
|
||||
|
|
Reference in a new issue