HomeSort by relevance Sort by last modified time
    Searched defs:conversationId (Results 1 - 10 of 10) 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 +
  /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 +
  /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 +
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationCheckedSet.java 250 final long conversationId = conversation.id;
251 if (containsKey(conversationId)) {
253 remove(conversationId);
255 put(conversationId, conversation);
331 final Long conversationId = mConversationUriToIdMap.get(conversationUri);
332 if (conversationId != null) {
333 itemsToRemoveFromBatch.add(conversationId);

Completed in 687 milliseconds