I'm using android universal image loader for loading some image in a gridview. The thing is I want these images to have also a background image, I mean two images on top of each other, I looked at universal image loader to see if there are any options to set such image but I couldn't find any.
I'll appreciate if someone can help me with this.
Thanks very much
Related
I want to display set of images in horizontal viewpager.
I have used the "chrisbanes PhotoView" library.
Everything is working well but after zooming any image the quality of images getting lose even for high resolution images.
The Size of image is 1440*2560
Please let me know, if I am missing something
Thanks you in advanced
I want to do image downloading as whatsapp does as blur images appear and when we click on image clear image gets downloaded.I want to do the same kind of work in my android App.Can anyone suggest how to achieve this?
You can use any image loading liabrary(Picasso,Glide or UIL)
Firstly load image of low quality say if you using Picasso
Picasso.with(this).load("....").resize(100,100).into(imageViews);
than on click load full image.
I am using Android-Universal-Image-Loader to load an image into an imageView. Is it possible to show a downscaled version of the image i am loading while the original image has not yet loaded?
As suggested here, the way to achieve your goal would be prepare and download two images, one with less size to show as preview while the big one is downloading
I'd like to create a gallery like this which has bar with small images and a big preview:
The point is that I'd like to have some preloading of images etc, so I found Android Universal Image Loader, but it doesn't seem it has the possibility of the top bar with image thumbnails. Could you please give me some hints how it could be modified to achieve it?
I have already done it using horizontal ListView
I want the image from url as it is without being sampled, but while using nostra's universal image loader the image is getting sampled. How am I supposed to avoid this is there any option to be included for this?
Enable imageScaleType(ImageScaleType.NONE) in display options (DisplayImageOptions).