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

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ViewMode.java 47 * Mode when showing a single conversation.
49 public static final int CONVERSATION = 1;
89 "Conversation",
90 "Conversation list",
92 "Search results conversation",
131 * Requests a transition of the mode to show the conversation list as the prominent view.
139 * Requests a transition of the mode to show a conversation as the prominent view.
143 setModeInternal(CONVERSATION);
156 * Requests a transition of the mode to show a conversation that was part of
202 return mode == CONVERSATION || mode == SEARCH_RESULTS_CONVERSATION
    [all...]
TwoPaneController.java 33 import com.android.mail.providers.Conversation;
50 private Conversation mConversationToShow;
63 * Display the conversation list fragment.
77 * Render the conversation list in the correct pane.
156 // The conversation list is visible.
163 // It's possible that we are not in conversation list mode
191 // In conversation mode, if the conversation list is not visible, then the user cannot
194 // When the conversation list is made visible again, try to enable the CAB
196 if (newMode == ViewMode.CONVERSATION || newMode == ViewMode.CONVERSATION_LIS
    [all...]
TwoPaneLayout.java 50 * This results in essentially three states: One where the folders are on the left and conversation
51 * list is on the right, and two states where the conversation list is on the left: one in which
54 * In folder or conversation list view, conversations are hidden and folders and conversation lists
57 * In Conversation List or Conversation View, folders are hidden, and conversation lists and
58 * conversation view is visible. This is the case in both portrait and landscape.
71 * True if and only if the conversation list is collapsible in the current device configuration.
79 * that are {@link ViewMode} constants like {@link ViewMode#CONVERSATION}
    [all...]
OnePaneController.java 31 import com.android.mail.providers.Conversation;
44 private static final String CONVERSATION_LIST_TRANSACTION_KEY = "conversation-list-transaction";
46 private static final String CONVERSATION_TRANSACTION_KEY = "conversation-transaction";
48 private static final String CONVERSATION_LIST_VISIBLE_KEY = "conversation-list-visible";
50 private static final String CONVERSATION_LIST_NEVER_SHOWN_KEY = "conversation-list-never-shown";
56 /** Whether a conversation list for this account has ever been shown.*/
104 * Returns true if the user is currently in the conversation list view, viewing the default
106 * @return true if user is in conversation list mode, viewing the default inbox.
146 // When entering conversation list mode, hide and clean up any currently visible
147 // conversation
    [all...]
MailActionBarView.java 50 import com.android.mail.providers.Conversation;
104 private Conversation mCurrentConversation;
254 case ViewMode.CONVERSATION:
323 // Check if we are either on a phone, or in Conversation mode on tablet. For these, the
335 case ViewMode.CONVERSATION:
417 case ViewMode.CONVERSATION:
419 // We update the ActionBar options when we are entering conversation view because
421 // to show up during the time between the conversation is selected and the fragment
789 public void setCurrentConversation(Conversation conversation) {
    [all...]
AbstractActivityController.java 82 import com.android.mail.providers.Conversation;
147 private static final String SAVED_CONVERSATION = "saved-conversation";
166 "saved-conversation-list-scroll-positions";
170 /** Tag used when loading a conversation list fragment. */
171 public static final String TAG_CONVERSATION_LIST = "tag-conversation-list";
191 protected Conversation mCurrentConversation;
197 /** A map of {@link Folder} {@link Uri} to scroll position in the conversation list. */
378 * An additional complication arises if we have to view a specific conversation within this
379 * folder. This is the case when launching the app from a single conversation notification
380 * or tapping on a specific conversation in the widget. In these cases, the conversation i
2241 final Conversation conversation = savedState.getParcelable(SAVED_CONVERSATION); local
    [all...]

Completed in 221 milliseconds