Questions tagged [galleryview]

103 questions
23
votes
2 answers

where do I include the copyright notice of someone else's work in my website?

My website contains : 1.FancyBox (for image overlay) 2.GalleryView (a slider) and both use JQuery. They are both free to use, but they insist on their copyright message shown where the work is used. I'm confused as to where I must show the…
batman
  • 5,022
  • 11
  • 52
  • 82
11
votes
2 answers

Inflated ImageView to put in GalleryView isn't the right size

I am trying to inflate an ImageView that scales a Drawable that I can display in a GalleryView. My code to inflate the view seems to work fine, except that the attributes of the ImageView are not applied. Specifically, the inflated ImageView does…
Richard
  • 28,691
  • 8
  • 33
  • 34
9
votes
3 answers

Make carousel with ViewFlipper or ViewPager

Since GalleryView deprecated we should immigrate to some alternative widgets, In my case ViewFlipper is the best but I have faced with several issues, as you can see in the following screenshot I have designed a carousel ImageGallery with…
iSun
  • 1,714
  • 6
  • 28
  • 57
5
votes
4 answers

How to Increase the size of Image View in Android

I am working on a project that requires me to implement two horizontal scroll views with an image view in between them. I would like to extend the size of the image view to fill up the gap in between the scroll view. I went through the sample code,…
user707165
4
votes
2 answers

jQuery GalleryView support for links/href

I've upgraded to jQuery GalleryView 2.1.1 and it doesn't seem to support ahref tags on the images. Is there a workaround for this? I want to be able to display the title on image mouseover and redirect to another page onclick.
Doug
  • 41
  • 1
  • 3
4
votes
4 answers

How to list all videos from specific folder in android

I am working on video recording application.I want to list the videos which I would be stored in particular folder.By the following code,I can able to fetch all videos from mobile.But i need to list the videos from particular folder.Can anyone guide…
3
votes
2 answers

populating galleryview with images from sqlite DB dynamically

I have a sqlite database that has over 2000 low res thumbnails of pictures. The database itself is over 100MB in size. The project requires me to have the photos residing in the database instead of the file path. This is what I would like to do…
Abhishek Sharma
  • 609
  • 1
  • 11
  • 22
3
votes
2 answers

Getting Position of Image on GalleryView while swiping?

How can I get the position of current image displaying in Gallery view while it is swiping?
mareeswaran
  • 227
  • 2
  • 9
3
votes
0 answers

Universal Image Loader(Too Slow)

I have about 200+ images in my gallery. I'm able to get that images using Universal Image Loader. But when loading all images to my app, it's so slow. Unlike in my regular gallery. My phone is Samsung Galaxy s5(Lollipop). Here's the Code. package…
3
votes
2 answers

Android Gallery View Update Images

i have a question about using GalleryView. At first, i set five "default images" to show from drawable directory. But after, i want to run an Async Task in which i download the images, save them and show them in the gallery. For that i created…
Gerardo
  • 5,800
  • 11
  • 66
  • 94
3
votes
3 answers

setting text in Gallery onItemSelected causes scrolling to snap

In the galleryView onItemSelected I call setText that change the text for a textview thats part of the main layout: @Override public void onItemSelected(EcoGalleryAdapterView parent, View view, int position, long id) { // --- run asyncTask…
Jimmy
  • 10,427
  • 18
  • 67
  • 122
2
votes
3 answers

Image setting Gallery view in android

How can we switch the pictures with some information? When we switch the picture then information should also be get switched in Gallery view in android. public class ImageAdapter extends BaseAdapter { String[]…
user1196969
  • 335
  • 2
  • 5
  • 14
2
votes
1 answer

How to make the images in the GalleryView come to initial position after completion of Scroll?

I will consider a simple GalleryView which consists of few images.I will scroll from left to right or vice versa and then leave. As of now (as shown in the 2 images below) the gallery stops in the middle of the view, leaving some spaces (marked red…
Vivek Kalkur
  • 2,200
  • 2
  • 21
  • 40
2
votes
2 answers

Android GalleryView Recycling

I'm using GalleryView with ~40 images, and so slow because no recycling... Anyone can show me a basic recycling to GalleryView on getView method. public class ImageAdapter extends BaseAdapter { int mGalleryItemBackground; private Context…
musa
  • 1,457
  • 18
  • 37
2
votes
4 answers

Tips to speed up Gallery widget in Android Honeycomb

I'm looking for a great way to speed up the Gallery view widget in Android Honeycomb. I'm currently using it to display some fairly large images at roughly 340 x 600 pixels, and I'd love for it to be smooth as butter when scrolling through the…
Michell Bak
  • 13,182
  • 11
  • 64
  • 121
1
2 3 4 5 6 7