HomeSort by relevance Sort by last modified time
    Searched defs:Conversation (Results 1 - 9 of 9) 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/UnifiedEmail/src/com/android/mail/browse/
ConversationViewHeader.java 29 import com.android.mail.providers.Conversation;
37 * A view for the subject and folders in the conversation view. This container
65 private Conversation mConversation;
101 public void setFolders(Conversation conv) {
122 LogUtils.e(LOG_TAG, "Unable to measure height of conversation header");
130 * Update the conversation view header to reflect the updated conversation.
132 public void onConversationUpdated(Conversation conv) {
133 // The only things we have to worry about when the conversation changes
134 // in the conversation header are the folders, priority indicators, and starred state
    [all...]
  /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()) {
462 Conversation.startQueryForAll(mQueryHandler, THREAD_LIST_QUERY_TOKEN);
463 Conversation.startQuery(mQueryHandler, UNREAD_THREADS_QUERY_TOKEN, Threads.READ + "=0");
616 Conversation conv = Conversation.from(this, cursor);
659 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 43 public class Conversation implements Parcelable {
144 * Used within the UI to indicate the adapter position of this conversation
152 // Used within the UI to indicate that a Conversation should be removed from
154 // Conversation is no longer in the ConversationList for the current folder,
168 /** An immutable, empty conversation list */
169 public static final Collection<Conversation> EMPTY = Collections.emptyList();
203 private Conversation(Parcel in, ClassLoader loader) {
234 final StringBuilder sb = new StringBuilder("[conversation id=");
244 public static final ClassLoaderCreator<Conversation> CREATOR =
245 new ClassLoaderCreator<Conversation>() {
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableListView.java 40 import com.android.mail.providers.Conversation;
209 Conversation conv = target.getConversation();
217 Collection<Conversation> convList = Conversation.listOf(conv);
237 cc.mostlyDestructiveUpdate(Conversation.listOf(conv), values);
290 public boolean destroyItems(Collection<Conversation> convs,
305 public int findConversation(ConversationItemView view, Conversation conv) {
316 Conversation foundConv;
352 // conversation to view.
367 public void onListItemSwiped(Collection<Conversation> conversations)
    [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...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
cdi-api-1.0.jar 

Completed in 164 milliseconds