Skip to content

Commit 36d42ca

Browse files
committed
Fix bug where progress bar is not set to hidden for image ajax within
list view.
1 parent 8f947c3 commit 36d42ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/androidquery/callback/BitmapAjaxCallback.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,12 +582,12 @@ private void checkCb(BitmapAjaxCallback cb, String url, ImageView v, Bitmap bm,
582582
if(v instanceof ImageView){
583583
cb.callback(url, (ImageView) v, bm, status);
584584
}else{
585-
setBitmap(url, v, bm, false);
585+
cb.setBitmap(url, v, bm, false);
586586
}
587587

588588
}
589589

590-
showProgress(false);
590+
cb.showProgress(false);
591591
}
592592

593593
protected void callback(String url, ImageView iv, Bitmap bm, AjaxStatus status){

0 commit comments

Comments
 (0)