Home | History | Annotate | Download | only in wearaccessibilityapp

Lines Matching refs:messagingStyle

25 import android.support.v4.app.NotificationCompat.MessagingStyle;
32 * user in a conversation. Notification for social app use MessagingStyle.
96 // Since we are adding to the MessagingStyle, we need to first retrieve the
97 // current MessagingStyle from the Notification itself.
99 MessagingStyle messagingStyle =
100 NotificationCompat.MessagingStyle.extractMessagingStyleFromNotification(
103 // Add new message to the MessagingStyle
104 messagingStyle.addMessage(replyCharSequence, System.currentTimeMillis(), null);
107 notification = notificationCompatBuilder.setStyle(messagingStyle).build();
149 MessagingStyle messagingStyle =
150 new NotificationCompat.MessagingStyle(messagingStyleCommsAppData.getReplayName())
154 for (MessagingStyle.Message message : messagingStyleCommsAppData.getMessages()) {
155 messagingStyle.addMessage(message);
220 .setStyle(messagingStyle)