I'd like to implement a Listview
in android in which I have the possibility to enable a delete mode, in which the user can select the entries to delete. It should be similar to the message application in android.
I already have a ListActivity
which has an icon on the left and text on the right side. I now like to add a CheckBox
floating on the right side of the list entry. The ListActivity
is listed in another question by a friend of mine: android listactivity background color .
The layout should be:
- Left Picture
- Center List item
- Right Checkbox for delete selection
How can I achieve this? Is there a standard ListView
item in the framework I could use?