views:

95

answers:

1

In my List View, I want to display multiple Icon. Icon1 for list row 1, Icon 2 for list row 2, Icon1 for list row 3.

+1  A: 

Override getView in your ListAdapter and then you can provide whatever layout you want for each row.

http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/

synic
synic ... thank you
PankajV