Android-Universal-Image-Loader
Android-Universal-Image-Loader copied to clipboard
Failed to display image from local while loading image from internet
I am using UIL for loading image from local and internet, both were working very well. Here is the code i am using: // display local image from gallery ImageLoader.getInstance().displayImage(ImageDownloader.Scheme.FILE.wrap(path), picture, options); // display image from network ImageLoader.getInstance().displayImage(url, picture, options);
I need to load static map, which is image, in my detail fragment, and show a gridview with image in another fragment. The issue i found is, if the image loading from internet is very slow in my detail fragment, and i open the detail fragment like three times, which means the loading from internet got called three times, then the gridview in other fragment will not display the images which are loading from local gallery.
I set the thread pool size to 3.
Is that a issue or something is missing from my code?
i have same issue. have you got any solution?