1. subclass  
BaseAdapter<http://developer.android.com/reference/android/widget/BaseAdapter.html>
  - implement getCount, getView
2. subclass AsyncTask<String, Void, Bitmap>
  - load your image in doInBackground, scale it down and cache it to the 
temporary chache dir
  - set the image in the onPostExecute 
3. invoke your ImageLoaderTask in the getView(...) method
3. watch out for memory leaks

--
♪ www.christoph-polcin.com


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to