ListView Multiselection
问题 I tried to implement the multiselection on Android ListView. I want to select/deselect more than one item and these items should keep highlighted or not. I don't want to use CheckBoxs for selecting the items. I put the functionallity in my adapter. Here is the code: public class MultiSelectionAdapter extends BaseAdapter { private List<Event> streams; private LayoutInflater inflater; private Context context; // I keep the selected items index. private static List<Integer> selectedIndexList =