Home | History | Annotate | Download | only in handlers

Lines Matching refs:messagingStyle

24 import android.support.v4.app.NotificationCompat.MessagingStyle;
37 * user in a conversation. Notification for social app use MessagingStyle.
105 // Since we are adding to the MessagingStyle, we need to first retrieve the
106 // current MessagingStyle from the Notification itself.
108 MessagingStyle messagingStyle =
109 NotificationCompat.MessagingStyle
112 // Add new message to the MessagingStyle
113 messagingStyle.addMessage(replyCharSequence, System.currentTimeMillis(), null);
117 .setStyle(messagingStyle)
160 MessagingStyle messagingStyle =
161 new NotificationCompat.MessagingStyle(messagingStyleCommsAppData.getReplayName())
165 for (MessagingStyle.Message message : messagingStyleCommsAppData.getMessages()) {
166 messagingStyle.addMessage(message);
237 .setStyle(messagingStyle)