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

/packages/apps/Mms/src/com/android/mms/ui/
H A DManageSimMessages.java72 private MessageListAdapter mListAdapter = null; field in class:ManageSimMessages
134 } else if (mListAdapter == null) {
137 // mListAdapter.setOnDataSetChangedListener(mDataSetChangedListener);
139 mListAdapter = new MessageListAdapter(
141 mSimList.setAdapter(mListAdapter);
145 mListAdapter.changeCursor(mCursor);
195 final Cursor cursor = (Cursor) mListAdapter.getItem(info.position);
268 Cursor cursor = (Cursor) mListAdapter.getCursor();
H A DConversationList.java105 private ConversationListAdapter mListAdapter; field in class:ConversationList
207 mListAdapter = new ConversationListAdapter(this, null);
208 mListAdapter.setOnContentChangedListener(mContentChangedListener);
209 setListAdapter(mListAdapter);
210 getListView().setRecyclerListener(mListAdapter);
325 Cursor cursor = mListAdapter.getCursor();
331 mListAdapter.changeCursor(null);
343 mListAdapter.notifyDataSetChanged();
421 item.setVisible(mListAdapter.getCount() > 0);
524 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 50 milliseconds