Bitmap take too much time to load

895 Views Asked by At

I am trying to implement load bitmap in ImageView, but it is taking too much time to load. I have also used ImageLoader but it is only supports for url, it is not supports for bitmap, so how can I show bitmap instantly? Please help to solve it!

Show image using Image loader

For url I used this code

imgLoader.DisplayImage(mImage, R.mipmap.ic_launcher, imgProfile);
1

There are 1 best solutions below

0
On

You can use any ImageLoader library like Glide, Picasso

Here is the snippet using Glide

Glide.with(mContext)
                .load(your_image_url_or_resource_id)
                .asBitmap()
                .into(new SimpleTarget<Bitmap>() {
                    @Override
                    public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
                        // you can do something with loaded bitmap here

                        yourImageViewRef.setImageBitmap(resource);
                    }
                });

If you want to load image using url try this code

Glide.with(context).load(your_image_url_or_resource_id).placeholder(R.drawable.placeholder_icon)
                    .error(R.drawable.error_icon).into(yourImageViewRef);