tags:

views:

98

answers:

1

how to keep icons in listview in android?

+1  A: 

I'm not sure I understand your question. If you want images in a ListView you're going to need to define a custom layout for your list items. You can place an ImageView in that layout and then in your getView or newView/bindView (depending on the Adapter class you extend), you can modify the ImageView to contain whatever graphic you see fit.

MattC
thank you very much
deepthi