Lines Matching defs:messages

364      * Notification key: the username to be displayed for all messages sent by the user
381 public static final String EXTRA_MESSAGES = "android.messages";
2015 * messages of varying types between any number of people.
2027 * .setContentTitle("2 new messages wtih " + sender.toString())
2032 * .addMessage(messages[0].getText(), messages[0].getTime(), messages[0].getSender())
2033 * .addMessage(messages[1].getText(), messages[1].getTime(), messages[1].getSender()))
2040 * The maximum number of messages that will be retained in the Notification itself (the
2054 * user before the posting app reposts the notification with those messages after they've
2055 * been actually sent and in previous messages sent by the user added in
2094 * sender. Should be <code>null</code> for messages by the current user, in which case
2203 * sender. Should be <code>null</code> for messages by the current user, in which case
2302 static Bundle[] getBundleArrayForMessages(List<Message> messages) {
2303 Bundle[] bundles = new Bundle[messages.size()];
2304 final int N = messages.size();
2306 bundles[i] = messages.get(i).toBundle();
2312 List<Message> messages = new ArrayList<>(bundles.length);
2317 messages.add(message);
2321 return messages;
3871 * A class which holds the unread messages from a conversation.
3881 UnreadConversation(String[] messages, RemoteInput remoteInput,
3884 mMessages = messages;
3893 * Gets the list of messages conveyed by this notification.
3919 * Gets the pending intent that Android Auto will send after it reads aloud all messages
3954 String[] messages, RemoteInputCompatBase.RemoteInput remoteInput,
3958 messages, (RemoteInput) remoteInput, replyPendingIntent,
3985 * Appends a new unread message to the list of messages for this conversation.
3987 * The messages should be added from oldest to newest.
4017 * Sets the pending intent that will be sent once the messages in this notification
4050 String[] messages = mMessages.toArray(new String[mMessages.size()]);
4052 return new UnreadConversation(messages, mRemoteInput, mReplyPendingIntent,