Image is not loading when loaded using ImageLoader

68 Views Asked by At

I am trying to set an image from url using ImageLoader.

Here is my code

DisplayImageOptions options = new DisplayImageOptions.Builder()
                .cacheInMemory(true)
                .cacheOnDisk(true)
                .imageScaleType(ImageScaleType.IN_SAMPLE_POWER_OF_2)
                .resetViewBeforeLoading(true)
                .considerExifParams(true)
                .showImageOnFail(R.drawable.no_image)
                .showImageForEmptyUri(R.drawable.no_image)
                .showImageOnLoading(R.drawable.no_image)
                .displayer(new FadeInBitmapDisplayer(300))
                .build();


        // Stop running tasks on this image if there are unfinished some
        ImageLoader.getInstance().cancelDisplayTask(mPostPhotoImageView);
        // Load the image

        ImageLoader.getInstance().displayImage(imageUrl, mPostPhotoImageView, options);

I don't understand, why is this happening.

1

There are 1 best solutions below

3
On

Have you considered using the Picasso library? I find it much easier to use to load images from an url, all you need is an imageView and url as arguments.

Picasso.with(context).load("URLHERE").into(imageView);

I'd also check your permissions, especially asking them on runtime, just in case (though this shouldn't be the issue)