how to see items that i pick on ListView ?
i have this code:
ListView lstView = getListView();
lstView.setChoiceMode(2); //CHOICE_MODE_MULTIPLE
lstView.setTextFilterEnabled(true);
setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_checked, items));
public void onListItemClick(ListView parent, View v, int position, long id) {
parent.setItemChecked(position, parent.isItemChecked(position));
TT.setText(items[position]);
}
when i press the Button – how to see items that i pick (i pick more than one)
You can get all the checked items through:
getListView().getCheckedItemPositions();For example: