Skip to content

Instantly share code, notes, and snippets.

@duanhong169
Created March 25, 2013 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duanhong169/5236618 to your computer and use it in GitHub Desktop.
Save duanhong169/5236618 to your computer and use it in GitHub Desktop.
/**
* 比较之前传入的ImageView在当前时刻关联的`AsyncTask`是否等于自身
* 来确定是否需要将结果返回给ImageView
*/
private ImageView getAttachedImageView() {
final ImageView imageView = imageViewReference.get();
final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
if (this == bitmapWorkerTask) {
return imageView;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment