UI freezing while showing image into ImageView

654 Views Asked by At

Inside my RecyclerView's row I have an ImageView and I want to preview this ImageView's image on the same activity (full screen preview)

and for that I'm doing this:

public void showImageZoomable(String imageURL) {

imageViewZoomable.setVisibility(View.VISIBLE);

DisplayImageOptions options = new DisplayImageOptions.Builder().cacheOnDisk(true).build();

imageLoader.loadImage(imageURL , options, new ImageLoadingListener() {
    @Override
    public void onLoadingStarted(String imageUri, View view) {

    }

    @Override
    public void onLoadingFailed(String imageUri, View view, FailReason failReason) {

    }

    @Override
    public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) {

        imageViewZoomable.setImage(ImageSource.bitmap(loadedImage));
    }

    @Override
    public void onLoadingCancelled(String imageUri, View view) {

    }
});
toolBar.setVisibility(View.GONE);
getActivity().findViewById(R.id.tabs).setVisibility(View.GONE);

}

the above function gets triggered when user taps on ImageView (which is on Recyclerview's row) and it takes the url of that image (image is already cached) and assigns it to imageViewZoomable using imageLoader library

it works fine but the whole process is bit slow and laggy

any idea how can I improve it?? or the way I'm doing it is not efficient then please suggest me a better alternative

3

There are 3 best solutions below

1
On

Try to use

  imageLoader.displayImage(imageURL, imageViewZoomable);

instead of

  imageLoader.loadImage(...);
2
On

U can use a fullscreen dialog (extends DialogFragment) to show a fullscreen image when user clicks the image in recyclerview item

0
On

You can use the below code if your custom class return imageView Object like imageViewZoomable.getImage() as a imageView so you can pass it like below.

imageLoader.displayImage(imageURL, imageViewZoomable.getImage());