We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The image view wont reload the image if I scroll it very fast. It show no image there. I am very new for the volley.
Thank you
The text was updated successfully, but these errors were encountered:
Yeah, I'm pretty sure Folly uncovered a bug in NetworkImageView with image recycling. I've reported it upstream but it hasn't been fixed yet.
Evan Charlton
On Mon, May 27, 2013 at 8:09 PM, hoyin258 [email protected] wrote:
The image view wont reload the image if I scroll it very fast. It show no image there. I am very new for the volley. Thank you — Reply to this email directly or view it on GitHubhttps://github.com//issues/1 .
— Reply to this email directly or view it on GitHubhttps://github.com//issues/1 .
Sorry, something went wrong.
Thank you.
Now I am using the traditional ImageView.
Instead of using
h.image.setImageUrl(getItem(position).getUrl(), mImageLoader);
Replace that to
ImageLoader.ImageListener listener = ImageLoader.getImageListener(h.image, android.R.drawable.ic_menu_rotate, android.R.drawable.ic_delete); mImageLoader.get(image_url , listener);
I think the problem is this line in ResultsAdapter
h.image.setImageDrawable(null);
if you set it to
h.image.setDefaultImageResId(R.drawable.default_image);
it works.
No branches or pull requests
The image view wont reload the image if I scroll it very fast. It show no image there.
I am very new for the volley.
Thank you
The text was updated successfully, but these errors were encountered: