Hi,
I have a ListView and I want to select multiple items in the ListView without using CheckedTextView.
Please help !!
Hi,
I have a ListView and I want to select multiple items in the ListView without using CheckedTextView.
Please help !!
I never tried it, but I would use ListView with checkbox but non visible.
Perform the setChecked(True) when the user press on an item.
I would also try changing the item background when the checkbox is checked.
You don't really need a CheckBox. All you need is a boolean flag on your list objects. When the user clicks an item you change the state of the flag, and probably the background or text color for that list item.