открытый класс LazyAdapter расширяет BaseAdapter {
private Activity activity;
private String[] data;
private static LayoutInflater inflater=null;
public ImageLoader imageLoader;
public LazyAdapter(Activity a, String[] d) {
activity = a;
data=d;
inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
imageLoader=new ImageLoader(activity.getApplicationContext());
}
public int getCount() {
return data.length;
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
final int pos = position;
final ImageView imgitem=null;
View retval = convertView;
if(retval==null)
{
retval = LayoutInflater.from(parent.getContext()).inflate(
R.layout.horrizontallistitem, null);
imgitem = (ImageView) retval
.findViewById(R.id.hlvItem);
}
imageLoader.DisplayImage(dataObjects[position], imgitem);
return retVal;
}
, см. Реализацию отложенного адаптера по следующей ссылке:
https://github.com/thest1/LazyList/tree/master/src/com/fedorvlasov/lazylist
В этом FileCache код UrlConnection бесполезенвам, но оставшийся код может достичь вашей цели