Reputation: 5348
What i am trying to do is toscroll through a list of images. But when i scroll down or up quickly the images are misplaced in order. A diff pic comes in the place where it was supposed to be. I have tried setting the imageview to null drawable from my imageloader library to clear any rpevious images if any. But the issue persists. What should i do
Upvotes: 1
Views: 273
Reputation: 5348
Finally discovered the culprit. I was using the imageview.bringtofront() function which was causing the problem for some unknown reason. I wanted to put a part of the imageview infront of the other and was using the relative layout & bring to front. Now i removed the bringtofront() and rearranged the imageview in relativelayout so that its already in the front. Resolved. Thank you all
Upvotes: 0
Reputation: 4230
You can try to use Universal image loader
This is for listView optimization and improving performance if your listView contain images from web.
Features:
Upvotes: 2