selected item on custom listview with contextual action bar
问题 I recently started using android actionbars and contextual action bars (CAB). I have just one activity which is a ListActivity. Basically I use the following code snipped to "activate" the CAB: ListView listView = getListView(); listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL); listView.setMultiChoiceModeListener(new MultiChoiceModeListener() { @Override public void onItemCheckedStateChanged(ActionMode mode, int position, long id, boolean checked) { // Here you can do something