I want to download an image from the Live folder using the Universal Image Downloader (NOSTRA my code below
imgLoader = ImageLoader.getInstance(); imgLoader.init(new ImageLoaderConfiguration.Builder(this).build());
Now I upload the image to wallImage (ImageView) below, this is my code
imgLoader.displayImage("drawable://" + result, wallImage);
My problem is that it takes a long time to download the image. Can someone give me a solution, what should I do?
user2567369
source share