Home | History | Annotate | Download | only in app

Lines Matching refs:listView

51 import android.widget.ListView;
68 private ListView mListView;
319 public ListView getListView() {
582 * a ListView. If it's text we should use the dark background
583 * for ListView we should use the light background. If neither
637 /* Yet another *special* case. If there is a ListView with buttons
639 * footer of the ListView this will allow more items to be
665 public static class RecycleListView extends ListView {
727 * Interface definition for a callback to be invoked before the ListView
733 * Called before the ListView is bound to an adapter.
734 * @param listView The ListView that will be shown in the dialog.
736 void onPrepareListView(ListView listView);
801 final RecycleListView listView = (RecycleListView)
815 listView.setItemChecked(position, true);
836 listView.setItemChecked(cursor.getPosition(),
861 mOnPrepareListViewListener.onPrepareListView(listView);
864 /* Don't directly set the adapter on the ListView as we might
865 * want to add a footer to the ListView later.
871 listView.setOnItemClickListener(new OnItemClickListener() {
880 listView.setOnItemClickListener(new OnItemClickListener() {
883 mCheckedItems[position] = listView.isItemChecked(position);
886 dialog.mDialogInterface, position, listView.isItemChecked(position));
891 // Attach a given OnItemSelectedListener to the ListView
893 listView.setOnItemSelectedListener(mOnItemSelectedListener);
897 listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
899 listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
901 listView.mRecycleOnMeasure = mRecycleOnMeasure;
902 dialog.mListView = listView;