I have a requirement where I need to load thumbnails and a Text in ListView which gets set by the custom Adapter. The Thumbnails shoul
Text
ListView
Adapter
In your adapter's oncreate() define
ImageLoader imageLoader=new ImageLoader(activity.getApplicationContext());
and use it in the getView() method:
imageLoader.DisplayImage(//your image url, //your imageView);