Home | History | Annotate | Download | only in ui

Lines Matching refs:Mms

18 package com.android.mms.ui;
24 import android.provider.Telephony.Mms;
38 import com.android.mms.R;
39 import com.google.android.mms.MmsException;
51 // TODO: should move this symbol into com.android.mms.telephony.Telephony.
65 // For MMS
66 Mms.SUBJECT,
67 Mms.SUBJECT_CHARSET,
68 Mms.DATE,
69 Mms.DATE_SENT,
70 Mms.READ,
71 Mms.MESSAGE_TYPE,
72 Mms.MESSAGE_BOX,
73 Mms.DELIVERY_REPORT,
74 Mms.READ_REPORT,
76 Mms.LOCKED,
77 Mms.STATUS
217 // We've got an mms item, pre-inflate the mms portion of the view
245 if (type.equals("mms")) {
268 return 4; // Incoming and outgoing messages, both sms and mms
288 // Note that messages from the SIM card all have a boxId of zero: Mms.MESSAGE_BOX_ALL
289 return (boxId == Mms.MESSAGE_BOX_INBOX || boxId == Mms.MESSAGE_BOX_ALL) ?
421 mColumnMmsSubject = cursor.getColumnIndexOrThrow(Mms.SUBJECT);
427 mColumnMmsSubjectCharset = cursor.getColumnIndexOrThrow(Mms.SUBJECT_CHARSET);
433 mColumnMmsMessageType = cursor.getColumnIndexOrThrow(Mms.MESSAGE_TYPE);
439 mColumnMmsMessageBox = cursor.getColumnIndexOrThrow(Mms.MESSAGE_BOX);
445 mColumnMmsDeliveryReport = cursor.getColumnIndexOrThrow(Mms.DELIVERY_REPORT);
451 mColumnMmsReadReport = cursor.getColumnIndexOrThrow(Mms.READ_REPORT);
463 mColumnMmsLocked = cursor.getColumnIndexOrThrow(Mms.LOCKED);
469 mColumnMmsStatus = cursor.getColumnIndexOrThrow(Mms.STATUS);