tags:

views:

115

answers:

1

hi..

please someone help me about this. i need to implement a list view with checkbox and each item should be assosiated with images. ex:

[image1] list_item_1       [checkbox]
[image2]  list_item_2      [checkbox]
                   '
                   .
                   .

please help me

A: 

You need to create a ListAdapater as a kind of "template" for the items in the ListView. You might want to take a look at this other similar question.

Benny Jobigan
but i need to loop through all items . i need to check whether item is checked or not and need to do some processing on checked items..
shre
The checkbox on the UI is just a representation of some variable in your data model. If you need to do some sort of processing, you'd process the underlying data items, not the stuff shown in the UI. That's how modern data-driven applications work.
Benny Jobigan