I was wondering if it's possible at all to replace the CheckMark of the CheckedTextView with a button, so I can click on the button and delete the item. If so, what is the recommended approach to doing this? If not, what other approaches can I take to achieve the same result?

有帮助吗?

解决方案

You could try making a regular listview out of your items and then create a specific listitem.xml layout for each list item to implement. This layout could then hold a delete button or any other widget you want. In code attach an onClick listener to this button to do the magic.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top