HomeSort by relevance Sort by last modified time
    Searched refs:Conversation (Results 1 - 6 of 6) sorted by null

  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 54 static class Conversation {
61 * A given conversation can have a single or multiple messages.
68 public Conversation(int conversationId, String participantName,
93 return "[Conversation: conversationId=" + conversationId +
103 public static Conversation[] getUnreadConversations(int howManyConversations,
105 Conversation[] conversations = new Conversation[howManyConversations];
107 conversations[i] = new Conversation(
MessagingService.java 111 Conversations.Conversation[] conversations = Conversations.getUnreadConversations(
113 for (Conversations.Conversation conv : conversations) {
118 private void sendNotificationForConversation(Conversations.Conversation conversation) {
121 conversation.getConversationId(),
122 getMessageReadIntent(conversation.getConversationId()),
132 conversation.getConversationId(),
133 getMessageReplyIntent(conversation.getConversationId()),
139 new UnreadConversation.Builder(conversation.getParticipantName())
140 .setLatestTimestamp(conversation.getTimestamp()
    [all...]
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 54 static class Conversation {
61 * A given conversation can have a single or multiple messages.
68 public Conversation(int conversationId, String participantName,
93 return "[Conversation: conversationId=" + conversationId +
103 public static Conversation[] getUnreadConversations(int howManyConversations,
105 Conversation[] conversations = new Conversation[howManyConversations];
107 conversations[i] = new Conversation(
MessagingService.java 111 Conversations.Conversation[] conversations = Conversations.getUnreadConversations(
113 for (Conversations.Conversation conv : conversations) {
118 private void sendNotificationForConversation(Conversations.Conversation conversation) {
121 conversation.getConversationId(),
122 getMessageReadIntent(conversation.getConversationId()),
132 conversation.getConversationId(),
133 getMessageReplyIntent(conversation.getConversationId()),
139 new UnreadConversation.Builder(conversation.getParticipantName())
140 .setLatestTimestamp(conversation.getTimestamp()
    [all...]
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
Conversations.java 54 static class Conversation {
61 * A given conversation can have a single or multiple messages.
68 public Conversation(int conversationId, String participantName,
93 return "[Conversation: conversationId=" + conversationId +
103 public static Conversation[] getUnreadConversations(int howManyConversations,
105 Conversation[] conversations = new Conversation[howManyConversations];
107 conversations[i] = new Conversation(
MessagingService.java 111 Conversations.Conversation[] conversations = Conversations.getUnreadConversations(
113 for (Conversations.Conversation conv : conversations) {
118 private void sendNotificationForConversation(Conversations.Conversation conversation) {
121 conversation.getConversationId(),
122 getMessageReadIntent(conversation.getConversationId()),
132 conversation.getConversationId(),
133 getMessageReplyIntent(conversation.getConversationId()),
139 new UnreadConversation.Builder(conversation.getParticipantName())
140 .setLatestTimestamp(conversation.getTimestamp()
    [all...]

Completed in 178 milliseconds