Home | History | Annotate | Download | only in handlers

Lines Matching refs:messagingStyle

26 import android.support.v4.app.NotificationCompat.MessagingStyle;
40 * user in a conversation. Notification for social app use MessagingStyle.
108 // Since we are adding to the MessagingStyle, we need to first retrieve the
109 // current MessagingStyle from the Notification itself.
111 MessagingStyle messagingStyle =
112 NotificationCompat.MessagingStyle
115 // Add new message to the MessagingStyle
116 messagingStyle.addMessage(replyCharSequence, System.currentTimeMillis(), null);
120 .setStyle(messagingStyle)
168 MessagingStyle messagingStyle =
169 new NotificationCompat.MessagingStyle(messagingData.getReplayName())
174 for (MessagingStyle.Message message : messagingData.getMessages()) {
175 messagingStyle.addMessage(message);
233 .setStyle(messagingStyle)