raqz wrote: > Hi, > I need to display contents of a list of objects. Capture the selected > items and later process it. I have been trying to find a tutorial on > net but in vain. > Could some one please advise me when can I find a tutorial. > I know how to display a list but I want the CheckedTextView option.
I use CHOICE_MODE_MULTIPLE in this tutorial from one of my books: http://github.com/commonsguy/cw-andtutorials/tree/master/20-Notifications/ However, that is a bit involved, as it's halfway through the book. You can see CHOICE_MODE_MULTIPLE in use here: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List11.html To get the selections you would use isItemChecked() on ListView. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

