Vishal Athare
Vishal Athare

Reputation: 21

How to add icon/image to listitem of ListView

I have created listview by using arrayadpter i add arraryadapter to listview contaning string array but i m unable to add icon to eatch listitem help me out...

Upvotes: 2

Views: 1502

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006664

Here is a free excerpt from one of my books that discusses the techniques involved. In a nutshell, you will need to extend your Adapter class (e.g., ArrayAdapter, CursorAdapter) and take direct control over the creation of rows, so you can apply your desired business logic.

Upvotes: 1

Related Questions