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

  /external/replicaisland/src/com/replica/replicaisland/
ConversationUtils.java 37 public static class Conversation {
42 public final static ArrayList<Conversation> loadDialog(int resource, Context context) {
45 ArrayList<Conversation> dialog = null;
46 Conversation currentConversation = null;
52 if (parser.getName().equals("conversation")) {
54 dialog = new ArrayList<Conversation>();
56 currentConversation = new Conversation();
  /packages/apps/Mms/src/com/android/mms/
MmsApp.java 35 import com.android.mms.data.Conversation;
94 Conversation.init(this);
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 77 import com.android.mms.data.Conversation;
78 import com.android.mms.data.Conversation.ConversationQueryHandler;
327 // this activity until a couple of seconds after the conversation list appears.
398 // If we're in the middle of the app initialization where we're loading the conversation
402 if (!Conversation.loadingThreads()) {
445 Conversation.startQueryForAll(mQueryHandler, THREAD_LIST_QUERY_TOKEN);
446 Conversation.startQuery(mQueryHandler, UNREAD_THREADS_QUERY_TOKEN, Threads.READ + "=0");
592 Conversation conv = Conversation.from(this, cursor);
635 Conversation conv = Conversation.from(ConversationList.this, cursor)
    [all...]
ComposeMessageActivity.java 130 import com.android.mms.data.Conversation;
131 import com.android.mms.data.Conversation.ConversationQueryHandler;
156 * 2. Viewing/managing message history of a conversation.
160 * thread_id long Identify the conversation to be viewed. When creating a
163 * address String The addresses of the recipients in current conversation.
234 // When the conversation has a lot of messages and a new message is sent, the list is scrolled
258 private Conversation mConversation; // Conversation we are working in
276 private MessageListView mMsgListView; // ListView for messages in this conversation
2005 Conversation conversation = null; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 44 public class Conversation implements Parcelable {
179 * Used within the UI to indicate the adapter position of this conversation
187 // Used within the UI to indicate that a Conversation should be removed from
189 // Conversation is no longer in the ConversationList for the current folder,
203 /** An immutable, empty conversation list */
204 public static final Collection<Conversation> EMPTY = Collections.emptyList();
245 private Conversation(Parcel in, ClassLoader loader) {
284 final StringBuilder sb = new StringBuilder("[conversation id=");
294 public static final ClassLoaderCreator<Conversation> CREATOR =
295 new ClassLoaderCreator<Conversation>() {
427 final Conversation conversation = new Conversation(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableListView.java 40 import com.android.mail.providers.Conversation;
233 Conversation conv = target.getConversation();
241 Collection<Conversation> convList = Conversation.listOf(conv);
261 cc.mostlyDestructiveUpdate(Conversation.listOf(conv), values);
309 public boolean destroyItems(Collection<Conversation> convs,
324 public int findConversation(ConversationItemView view, Conversation conv) {
335 Conversation foundConv;
371 // conversation to view.
386 public void onListItemSwiped(Collection<Conversation> conversations)
    [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...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 45 public class Conversation {
83 // The thread ID of this conversation. Can be zero in the case of a
84 // new conversation where the recipient set is changing as the user
95 private boolean mIsChecked; // True if user has selected the conversation for a
105 private Conversation(Context context) {
111 private Conversation(Context context, long threadId, boolean allowQuery) {
113 Log.v(TAG, "Conversation constructor threadId: " + threadId);
122 private Conversation(Context context, Cursor cursor, boolean allowQuery) {
124 Log.v(TAG, "Conversation constructor cursor, allowQuery: " + allowQuery);
131 * Create a new conversation with no recipients. {@link #setRecipients} ca
    [all...]

Completed in 141 milliseconds