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

  /packages/apps/Mms/tests/src/com/android/mms/util/
VerifyRecipientUnitTests.java 24 import com.android.mms.data.Conversation;
27 * This is a series of unit tests for Conversation's verifyRecipients function.
53 Conversation.verifySingleRecipient(getContext(), mThreadId1, "(415) 232-4567"),
57 Conversation.verifySingleRecipient(getContext(), mThreadId1, " 232-4567"),
  /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();
ConversationDialogActivity.java 37 import com.replica.replicaisland.ConversationUtils.Conversation;
44 private ConversationUtils.Conversation mConversation;
85 private void formatPages(Conversation conversation, TextView textView) {
92 for (int page = conversation.pages.size() - 1; page >= 0 ; page--) {
93 ConversationUtils.ConversationPage currentPage = conversation.pages.get(page);
136 conversation.pages.add(page + addedPages, newPage);
LevelTree.java 61 public ArrayList<ConversationUtils.Conversation> character1Conversations;
62 public ArrayList<ConversationUtils.Conversation> character2Conversations;
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListAdapter.java 22 import com.android.mms.data.Conversation;
36 //TODO: This should be public class ConversationListAdapter extends ArrayAdapter<Conversation>
57 Conversation conv = Conversation.from(context, cursor);
93 Conversation conv = Conversation.from(mContext, cursor);
NoConfirmationSendService.java 27 import com.android.mms.data.Conversation;
61 String recipients = Conversation.getRecipients(intentUri);
ConversationList.java 28 import com.android.mms.data.Conversation;
197 // this activity until a couple of seconds after the conversation list appears.
265 // If we're in the middle of the app initialization where we're loading the conversation
269 if (!Conversation.loadingThreads()) {
304 Conversation.startQueryForAll(mQueryHandler, THREAD_LIST_QUERY_TOKEN);
305 Conversation.startQuery(mQueryHandler, UNREAD_THREADS_QUERY_TOKEN, Threads.READ + "=0");
400 Conversation conv = Conversation.from(this, cursor);
442 Conversation conv = Conversation.from(ConversationList.this, cursor)
    [all...]
ConversationListItem.java 23 import com.android.mms.data.Conversation;
44 * This class manages the view for given conversation.
62 private Conversation mConversation;
91 public Conversation getConversation() {
171 public final void bind(Context context, final Conversation conversation) {
174 mConversation = conversation;
177 if (conversation.isChecked()) {
179 } else if (conversation.hasUnreadMessages()) {
189 boolean hasError = conversation.hasError()
    [all...]
ComposeMessageActivity.java 134 import com.android.mms.data.Conversation;
158 * 2. Viewing/managing message history of a conversation.
162 * thread_id long Identify the conversation to be viewed. When creating a
165 * address String The addresses of the recipients in current conversation.
236 private Conversation mConversation; // Conversation we are working in
252 private MessageListView mMsgListView; // ListView for messages in this conversation
1863 Conversation conversation = null; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/
LogTag.java 20 import com.android.mms.data.Conversation;
91 Conversation.dumpThreadsTable(context);
92 Conversation.dump();
93 Conversation.dumpSmsTable(context);
MmsApp.java 24 import com.android.mms.data.Conversation;
80 Conversation.init(this);
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 38 public class Conversation {
75 // The thread ID of this conversation. Can be zero in the case of a
76 // new conversation where the recipient set is changing as the user
87 private boolean mIsChecked; // True if user has selected the conversation for a
95 private Conversation(Context context) {
101 private Conversation(Context context, long threadId, boolean allowQuery) {
103 Log.v(TAG, "Conversation constructor threadId: " + threadId);
112 private Conversation(Context context, Cursor cursor, boolean allowQuery) {
114 Log.v(TAG, "Conversation constructor cursor, allowQuery: " + allowQuery);
121 * Create a new conversation with no recipients. {@link #setRecipients} ca
    [all...]
WorkingMessage.java 119 // Conversation this message is targeting.
120 private Conversation mConversation;
282 * Load the draft message for the specified conversation, or a new empty message if
286 Conversation conv) {
295 private boolean loadFromConversation(Conversation conv) {
786 * Save this message as a draft in the conversation previously specified
799 throw new IllegalStateException("saveDraft() called with no conversation");
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsSingleRecipientSender.java 19 import com.android.mms.data.Conversation;
60 mDest = Conversation.verifySingleRecipient(mContext, mThreadId, mDest);
MessagingNotification.java 26 import com.android.mms.data.Conversation;
128 Conversation.markAllConversationsAsSeen(context);
484 // user to the conversation list instead of the specific thread.
  /packages/apps/Mms/tests/src/com/android/mms/ui/
ComposeMessageActivityTests.java 23 import com.android.mms.data.Conversation;
200 Conversation conv = Conversation.get(mActivity, contactList, false);

Completed in 4831 milliseconds