Searched refs:MessageListAdapter (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Mms/tests/src/com/android/mms/ui/
H A DComposeMessageActivityTests.java25 import com.android.mms.ui.MessageListAdapter.ColumnsMap;
52 private MessageListAdapter mMsgListAdapter;
77 mMsgListAdapter = (MessageListAdapter)mMsgListView.getAdapter();
92 private final MessageListAdapter.OnDataSetChangedListener
93 mDataSetChangedListener = new MessageListAdapter.OnDataSetChangedListener() {
94 public void onDataSetChanged(MessageListAdapter adapter) {
121 public void onContentChanged(MessageListAdapter adapter) {
141 mColumnsMap = new MessageListAdapter.ColumnsMap(cursor);
H A DMultiPartSmsTests.java19 import static com.android.mms.ui.MessageListAdapter.COLUMN_ID;
20 import static com.android.mms.ui.MessageListAdapter.COLUMN_MSG_TYPE;
H A DSmsTest.java19 import static com.android.mms.ui.MessageListAdapter.COLUMN_ID;
20 import static com.android.mms.ui.MessageListAdapter.COLUMN_MSG_TYPE;
/packages/apps/Mms/src/com/android/mms/ui/
H A DMessageUtils.java155 if ("mms".equals(cursor.getString(MessageListAdapter.COLUMN_MSG_TYPE))) {
156 int type = cursor.getInt(MessageListAdapter.COLUMN_MMS_MESSAGE_TYPE);
176 long id = cursor.getLong(MessageListAdapter.COLUMN_ID);
231 int type = cursor.getInt(MessageListAdapter.COLUMN_MMS_MESSAGE_TYPE);
239 long id = cursor.getLong(MessageListAdapter.COLUMN_ID);
288 int msgBox = cursor.getInt(MessageListAdapter.COLUMN_MMS_MESSAGE_BOX);
338 int smsType = cursor.getInt(MessageListAdapter.COLUMN_SMS_TYPE);
344 details.append(cursor.getString(MessageListAdapter.COLUMN_SMS_ADDRESS));
348 long date_sent = cursor.getLong(MessageListAdapter.COLUMN_SMS_DATE_SENT);
366 long date = cursor.getLong(MessageListAdapter
[all...]
H A DMessageListAdapter.java47 public class MessageListAdapter extends CursorAdapter { class in inherits:CursorAdapter
48 private static final String TAG = "MessageListAdapter";
126 public MessageListAdapter( method in class:MessageListAdapter
172 void onDataSetChanged(MessageListAdapter adapter);
173 void onContentChanged(MessageListAdapter adapter);
198 Log.v(TAG, "MessageListAdapter.notifyDataSetChanged().");
265 /* MessageListAdapter says that it contains four types of views. Really, it just contains
H A DManageSimMessages.java72 private MessageListAdapter mListAdapter = null;
135 // Note that the MessageListAdapter doesn't support auto-requeries. If we
139 mListAdapter = new MessageListAdapter(
H A DComposeMessageActivity.java25 import static com.android.mms.ui.MessageListAdapter.COLUMN_ID;
26 import static com.android.mms.ui.MessageListAdapter.COLUMN_MSG_TYPE;
27 import static com.android.mms.ui.MessageListAdapter.PROJECTION;
279 public MessageListAdapter mMsgListAdapter; // and its corresponding ListAdapter
536 * @param createFromCursorIfNotInCache true if the item is not found in the MessageListAdapter's
3605 mMsgListAdapter = new MessageListAdapter(this, null, mMsgListView, true, highlight);
3930 private final MessageListAdapter.OnDataSetChangedListener
3931 mDataSetChangedListener = new MessageListAdapter.OnDataSetChangedListener() {
3933 public void onDataSetChanged(MessageListAdapter adapter) {
3937 public void onContentChanged(MessageListAdapter adapte
[all...]
H A DMessageItem.java40 import com.android.mms.ui.MessageListAdapter.ColumnsMap;
226 // Logic matches MessageListAdapter.getItemViewType which is used to decide which

Completed in 70 milliseconds