Possible Duplicate:
Gmail-like ListView with checkboxes (and using the ActionBar)
I need :
ListView with
items { CheckBox, then TextView } ;
when you press on the CheckBox , item should change it’s color.
How can I get it ?
P.S.
In other words I need a ListView with CheckBoxes like in Gmail app
The answer is quite simple! There’s a component called
CheckedTextViewwhich is a combination of aTextViewand aCheckBox.This component might simplify your logic, leaving you free to do modify anything you want in your list’s
OnItemClickListener!I’ve wrote an example for you: