Home | History | Annotate | Download | only in messagingservice

Lines Matching refs:conversation

81         Conversations.Conversation[] conversations = Conversations.getUnreadConversations(
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
91 conversation.getConversationId(),
92 getMessageReadIntent(conversation.getConversationId()),
103 conversation.getConversationId(),
104 getMessageReplyIntent(conversation.getConversationId()),
116 new UnreadConversation.Builder(conversation.getParticipantName())
117 .setLatestTimestamp(conversation.getTimestamp())
123 for (Iterator<String> messages = conversation.getMessages().iterator();
138 .setWhen(conversation.getTimestamp())
139 .setContentTitle(conversation.getParticipantName())
148 + conversation.getConversationId() + " conversation: " + conversation);
150 mNotificationManager.notify(conversation.getConversationId(), builder.build());