Searched defs:mListAdapter (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
H A DManageSimMessages.java73 private MessageListAdapter mListAdapter = null; field in class:ManageSimMessages
135 } else if (mListAdapter == null) {
138 // mListAdapter.setOnDataSetChangedListener(mDataSetChangedListener);
140 mListAdapter = new MessageListAdapter(
142 mSimList.setAdapter(mListAdapter);
146 mListAdapter.changeCursor(mCursor);
196 final Cursor cursor = (Cursor) mListAdapter.getItem(info.position);
269 Cursor cursor = (Cursor) mListAdapter.getCursor();
H A DConversationList.java104 private ConversationListAdapter mListAdapter; field in class:ConversationList
170 mListAdapter = new ConversationListAdapter(this, null);
171 mListAdapter.setOnContentChangedListener(mContentChangedListener);
172 setListAdapter(mListAdapter);
173 getListView().setRecyclerListener(mListAdapter);
287 mListAdapter.changeCursor(null);
299 mListAdapter.notifyDataSetChanged();
377 item.setVisible(mListAdapter.getCount() > 0);
480 Cursor cursor = mListAdapter.getCursor();
507 Cursor cursor = mListAdapter
[all...]
/packages/apps/Email/src/com/android/email/activity/
H A DMailboxListFragment.java186 private MailboxFragmentAdapter mListAdapter; field in class:MailboxListFragment
380 mListAdapter = new MailboxFragmentAdapter(mActivity, mMailboxesAdapterCallback);
381 setListAdapter(mListAdapter); // It's safe to do even before the list view is created.
743 if (mListAdapter.getCursor() == null) {
788 mListAdapter.swapCursor(cursor);
807 mListAdapter.swapCursor(null);
813 mListAdapter.swapCursor(cursor);
847 mListAdapter.swapCursor(null);
860 final long id = mListAdapter.getId(position);
861 if (mListAdapter
[all...]
H A DMessageListFragment.java117 private MessagesAdapter mListAdapter; field in class:MessageListFragment
357 mListAdapter = new MessagesAdapter(mActivity, this, getListContext().isSearch());
376 mListAdapter.setLayout(layout);
512 mListAdapter.onSaveInstanceState(outState);
524 mListAdapter.loadState(savedInstanceState);
585 return mListAdapter.getSelectedSet().size();
729 if (!mListAdapter.isSelected(listItem)) {
756 Set<Long> selectedMessageIds = mListAdapter.getSelectedSet();
775 mListAdapter.toggleSelected(itemView);
875 mListAdapter
[all...]

Completed in 107 milliseconds