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
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'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
I want to show my image gallery in more nice way than a grid view or list view.
Please have look at this screen:
There are some algorithms for doing this.
Is there an existing library which I could reuse for displaying such gallery?
Note the following:
My images are in my sqlite table, the amount of images is fixed
In table I have only urls for each image
I do not have images (and their sizes) in advance, so I would prefer to download them in lazy way (as much as possible)
I am working on camera application in android and have a page with a camera preview on half of the screen and an image gallery as shown in image below. Right now, i am using gridview to show image thumbnails in gallery. But, the problem is, i can't make the gallery scrollable(horizontally). I also found that horizontal scrolling is not supported in grid view.
The screenshot i provided is from iphone app and that is working fine. I used uicollectionview in iphone app for the same.
I can't find anything like uicollectionview in android.
Any help will be appreciated. Thanks in advance.
Or you can use additional plugins like this
You could take a look at Gallery if that is what you meant. Just take not that it recently got deprecated and you should either use a HorizontalScrollView or a ViewPager and programmatically add the items.
I am using an Image Loaded which loads images based on requirment and since the images are big. I want to display an intermediate Spinning Image showing which would convey that the image is loading to the User.
I am displaying these images in the Viewpager.
We can not use a Gif image to display the animation and i wonder how it can be done.
P.S i am not looking for a Progress Dialog.
You could try doing a View Animation on the ImageView. Rotate is one of the included animations, and you can define it in XML.
Here's a Youtube Video from Google explaining it a little more.