HomeSort by relevance Sort by last modified time
    Searched full:conversations (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationUpdater.java 37 * Classes that can update conversations implement this interface.
83 * @param target the conversations to act upon.
84 * @param action to perform after the UI has been updated to remove the conversations
92 * Mark a number of conversations as read or unread.
93 * @param targets the conversations to act upon
94 * @param read true if the conversations are marked read, false if they are marked unread.
95 * @param viewed whether the conversations are marked viewed as well. This indicates that the
96 * conversations are shown on the UI.
130 * Get a destructive action for selected conversations. The action corresponds to Menu item
138 * Get a destructive action for selected conversations. The action corresponds to Menu ite
    [all...]
ConversationSetObserver.java 22 * is a list of conversations selected by the user to perform an action on. The user could select
23 * five conversations and delete them. The five conversations form a set. Constructing such a set
ConversationCheckedSet.java 39 * A simple thread-safe wrapper over a set of conversations representing a
83 Parcelable[] conversations = source.readParcelableArray(loader); local
84 for (Parcelable parceled : conversations) {
234 * Returns the number of conversations that are currently selected
235 * @return the number of selected conversations.
274 * Puts all conversations given in the input argument into the selection set. If there are
275 * any listeners they are notified once after adding <em>all</em> conversations to the selection
310 * Iterates through a cursor of conversations and ensures that the current set is present
311 * within the result set denoted by the cursor. Any conversations not foun in the result set
325 // First ask the ConversationCursor for the list of conversations that have been delete
    [all...]
LayoutListener.java 22 * both conversation lists and conversations at the same time. For example, tablets can do this, but
AnimatedAdapter.java 194 * A list of all views that are not conversations. These include temporary views from
202 * Temporary views insert at specific positions relative to conversations. These can be
427 * Deletes the selected conversations from the conversation list view with a
428 * translation and then a shrink. These conversations <b>must</b> have their
429 * {@link Conversation#position} set to the position of these conversations
434 * @param conversations
437 public void swipeDelete(Collection<Conversation> conversations,
439 delete(conversations, listener, mSwipeDeletingItems);
444 * Deletes the selected conversations from the conversation list view by
445 * shrinking them away. These conversations <b>must</b> have thei
    [all...]
ConversationPositionTracker.java 66 * @return the total number of conversations in the list.
220 * conversations available in the folder. If no next conversation can be found, this method
224 * @param mTarget conversations to overlook while finding the next conversation. (These are
225 * usually the conversations to be deleted.)
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
29 public class Conversations {
99 private Conversations() {
104 Conversation[] conversations = new Conversation[howManyConversations]; local
106 conversations[i] = new Conversation(
110 return conversations;
MessagingService.java 81 Conversations.Conversation[] conversations = Conversations.getUnreadConversations( local
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
29 public class Conversations {
99 private Conversations() {
104 Conversation[] conversations = new Conversation[howManyConversations]; local
106 conversations[i] = new Conversation(
110 return conversations;
MessagingService.java 81 Conversations.Conversation[] conversations = Conversations.getUnreadConversations( local
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
29 public class Conversations {
99 private Conversations() {
104 Conversation[] conversations = new Conversation[howManyConversations]; local
106 conversations[i] = new Conversation(
110 return conversations;
MessagingService.java 81 Conversations.Conversation[] conversations = Conversations.getUnreadConversations( local
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java 463 // conversations in pieces.
734 * Returns the conversation uris for the Conversations that the ConversationCursor is treating
760 * cache. Notably, conversations which are marked as deleted in the cache but which haven't yet
    [all...]
SelectedConversationsActionMenu.java 61 * ContextMode} specific to operating on a set of conversations.
69 * The set of conversations to display the menu for.
263 final Collection<Conversation> conversations = mCheckedSet.values(); local
285 final CharSequence message = Utils.formatPlural(mContext, resId, conversations.size());
292 destroy(action, conversations, mUpdater.getDeferredBatchAction(action, undoCallback));
297 * Destroy these conversations through the conversation updater
299 * @param target conversations to destroy
309 * Marks the read state of currently selected conversations (<b>and</b> the backing storage)
311 * @param read is true if the conversations are to be marked as read, false if they are to be
316 // The conversations are marked read but not viewed
367 final Collection<Conversation> conversations = mCheckedSet.values(); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
MultiSelectActionModeCallback.java 37 void onActionBarDelete(Collection<SelectedConversation> conversations);
38 void onActionBarArchive(Iterable<SelectedConversation> conversations,
40 void onActionBarNotification(Iterable<SelectedConversation> conversations,
178 // ParticipantNormalizedDestination is always null for group conversations.
191 final Iterable<SelectedConversation> conversations = mSelectedConversations.values(); local
192 for (final SelectedConversation conversation : conversations) {
211 // If we have notification off conversations we show on button, if we have notification on
AbstractConversationListActivity.java 113 public void onActionBarDelete(final Collection<SelectedConversation> conversations) {
138 conversations.size()))
144 for (final SelectedConversation conversation : conversations) {
157 public void onActionBarArchive(final Iterable<SelectedConversation> conversations,
160 for (final SelectedConversation conversation : conversations) {
193 public void onActionBarNotification(final Iterable<SelectedConversation> conversations,
195 for (final SelectedConversation conversation : conversations) {
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/res/values/
strings.xml 21 <string name="send_2_conversations">Send 2 conversations with 1 message</string>
  /developers/samples/android/notification/MessagingService/Application/src/main/res/values/
strings.xml 21 <string name="send_2_conversations">Send 2 conversations with 1 message</string>
  /development/samples/browseable/MessagingService/res/values/
strings.xml 21 <string name="send_2_conversations">Send 2 conversations with 1 message</string>
  /packages/apps/UnifiedEmail/src/com/android/mail/graphics/
PageMarginDrawable.java 26 * Custom drawable for the page margins between conversations.
  /packages/apps/UnifiedEmail/src/com/android/mail/
ConversationListContext.java 36 * An encapsulation over a request to a list of conversations and the various states around it.
52 * The folder whose conversations we are displaying, if any.
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationActivity.java 78 // conversations. When there are more conversations that can be displayed in
79 // the widget, the last item is a "More conversations" item. The way widgets
81 // to this ConversationActivity. When the user taps on "More conversations", we
350 // conversations as is.
  /packages/apps/UnifiedEmail/res/values-fr/
strings.xml 150 <item quantity="other" msgid="1585660381208712562">"Supprimer ces <xliff:g id="COUNT">%1$d</xliff:g> conversations ?"</item>
154 <item quantity="other" msgid="2001972798185641108">"Archiver ces <xliff:g id="COUNT">%1$d</xliff:g> conversations ?"</item>
171 <item quantity="other" msgid="1154441830432477256">"Annulation du suivi pour <xliff:g id="COUNT">%1$d</xliff:g> conversations"</item>
175 <item quantity="other" msgid="4559007262578295280">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations ignorées"</item>
179 <item quantity="other" msgid="664292592683692920">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme étant du spam"</item>
183 <item quantity="other" msgid="6351739502184556635">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme n\'étant pas du spam"</item>
187 <item quantity="other" msgid="4823331037057239763">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme non importantes"</item>
191 <item quantity="other" msgid="8400382886585779414">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme étant du phishing"</item>
195 <item quantity="other" msgid="8520761617935818623">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations archivées"</item>
199 <item quantity="other" msgid="6287534453625638257">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations supprimées"</item
    [all...]
  /packages/apps/UnifiedEmail/res/values-fr-rCA/
strings.xml 150 <item quantity="other" msgid="1585660381208712562">"Supprimer ces <xliff:g id="COUNT">%1$d</xliff:g> conversations?"</item>
154 <item quantity="other" msgid="2001972798185641108">"Archiver ces <xliff:g id="COUNT">%1$d</xliff:g> conversations?"</item>
171 <item quantity="other" msgid="1154441830432477256">"Suppression de l\'étoile de <xliff:g id="COUNT">%1$d</xliff:g> conversations en cours?"</item>
175 <item quantity="other" msgid="4559007262578295280">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations ignorées"</item>
179 <item quantity="other" msgid="664292592683692920">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme pourriel."</item>
183 <item quantity="other" msgid="6351739502184556635">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme n\'étant pas du pourriel"</item>
187 <item quantity="other" msgid="4823331037057239763">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations marquées comme n\'étant pas importantes."</item>
191 <item quantity="other" msgid="8400382886585779414">"&lt;b&gt;<xliff:g id="COUNT">%1$d</xliff:g>&lt;/b&gt; conversations signalées comme étant de l\'hameçonnage"</item>
195 <item quantity="other" msgid="8520761617935818623">"<xliff:g id="COUNT">%1$d</xliff:g> conversations archivées."</item>
199 <item quantity="other" msgid="6287534453625638257">"<xliff:g id="COUNT">%1$d</xliff:g> conversations supprimées."</item
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/widget/
WidgetConversationListService.java 87 // "View more conversations" view.
94 // If we ever fail to move to a position, return the "View More conversations"
237 * @return the "View more conversations" view. When the user taps this item, they're
250 // Tapping this "More conversations" item should take us to the ConversationList.

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 9