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

  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReadReceiver.java 34 int conversationId = intent.getIntExtra(CONVERSATION_ID, -1);
35 if (conversationId != -1) {
36 Log.d(TAG, "Conversation " + conversationId + " was read");
37 MessageLogger.logMessage(context, "Conversation " + conversationId + " was read.");
39 notificationManager.cancel(conversationId);
MessageReplyReceiver.java 27 * A receiver that gets called when a reply is sent to a given conversationId
36 int conversationId = intent.getIntExtra(MessagingService.CONVERSATION_ID, -1);
38 if (conversationId != -1) {
39 Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId);
40 MessageLogger.logMessage(context, "ConversationId: " + conversationId +
Conversations.java 56 private final int conversationId;
68 public Conversation(int conversationId, String participantName,
70 this.conversationId = conversationId;
77 return conversationId;
93 return "[Conversation: conversationId=" + conversationId +
MessagingService.java 103 private Intent getMessageReplyIntent(int conversationId) {
107 .putExtra(CONVERSATION_ID, conversationId);
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReadReceiver.java 34 int conversationId = intent.getIntExtra(CONVERSATION_ID, -1);
35 if (conversationId != -1) {
36 Log.d(TAG, "Conversation " + conversationId + " was read");
37 MessageLogger.logMessage(context, "Conversation " + conversationId + " was read.");
39 notificationManager.cancel(conversationId);
MessageReplyReceiver.java 27 * A receiver that gets called when a reply is sent to a given conversationId
36 int conversationId = intent.getIntExtra(MessagingService.CONVERSATION_ID, -1);
38 if (conversationId != -1) {
39 Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId);
40 MessageLogger.logMessage(context, "ConversationId: " + conversationId +
Conversations.java 56 private final int conversationId;
68 public Conversation(int conversationId, String participantName,
70 this.conversationId = conversationId;
77 return conversationId;
93 return "[Conversation: conversationId=" + conversationId +
MessagingService.java 103 private Intent getMessageReplyIntent(int conversationId) {
107 .putExtra(CONVERSATION_ID, conversationId);
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessageReadReceiver.java 34 int conversationId = intent.getIntExtra(CONVERSATION_ID, -1);
35 if (conversationId != -1) {
36 Log.d(TAG, "Conversation " + conversationId + " was read");
37 MessageLogger.logMessage(context, "Conversation " + conversationId + " was read.");
39 notificationManager.cancel(conversationId);
MessageReplyReceiver.java 27 * A receiver that gets called when a reply is sent to a given conversationId
36 int conversationId = intent.getIntExtra(MessagingService.CONVERSATION_ID, -1);
38 if (conversationId != -1) {
39 Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId);
40 MessageLogger.logMessage(context, "ConversationId: " + conversationId +
Conversations.java 56 private final int conversationId;
68 public Conversation(int conversationId, String participantName,
70 this.conversationId = conversationId;
77 return conversationId;
93 return "[Conversation: conversationId=" + conversationId +
MessagingService.java 103 private Intent getMessageReplyIntent(int conversationId) {
107 .putExtra(CONVERSATION_ID, conversationId);

Completed in 77 milliseconds