I would expect this (inside getView()) to work...
getView()
but nothing happens, the bitmaps are not loaded into the ImageView....
Thread th= new Thr
First of all, Android application UI not updated or accessed from worker thread. So your Thread not going to change/access Image.
Second, you don't need Thread for Image loading, as your ImageLoader library itself take care of it.
Thread
ImageLoader