Im using android query 0.26.8. I want to shuldDelay() method in Custom Adapter.
Im trying to load image in custom Adapter but getting error.
get error - at com.androidquery.callback.BitmapAjaxCallback.getMemoryCached(BitmapAjaxCallback.java:445)
And i have use already this code for load image from server.
if (listEstablishmentsDatas.EstablishmentData.get(position).Logo.equalsIgnoreCase("NULL")) {
holder.img_logo.setBackgroundResource(R.drawable.ic_default);
}else{
AQuery aq = new AQuery(convertView);
aq.id(holder.img_logo).progress(R.id.progress).image(listEstablishmentsDatas.EstablishmentData
.get(position).Logo, false, false);
}
Now i want to use shouldDelay() method so please any one help me.
Any suggestions would be very much appreciated.
Thanks,
Sumit Pansuriya.