Gallery is a collection of photos in a software system

learn more… | top users | synonyms

51
votes
8answers
11k views

How can I make a horizontal ListView in Android?

Like many things in Android, you wouldn't think this would be such a hard problem but ohhh, by golly, would you be wrong. And, like many things in Android, the API doesn't even provide a reasonably ...
41
votes
7answers
43k views

Open an image in Android's built-in Gallery app programmatically

I am trying to open an image / picture in the Gallery built-in app from inside my application. I have a URI of the picture (the picture is located on the SD card). Do you have any suggestions? ...
18
votes
6answers
9k views

How to stop scrolling in a Gallery Widget?

I loaded some images into a gallery. Now I'm able to scroll but once started scrolling the scrolling won't stop. I would like the gallery to just scroll to the next image and then stop until the user ...
17
votes
3answers
12k views

Android: OutofMemoryError: bitmap size exceeds VM budget with no reason I can see

I am having an OutOfMemory exception with a gallery over 600x800 pixels JPEG's. The environment I've been using Gallery with JPG images around 600x800 pixels. Since my content may be a bit more ...
11
votes
5answers
11k views

Horizontal ListView in Android?

Is there any Possible to make the ListView horizontally? I done this Using Gallery view. But the Selected item comes to the center of the Screen Automatically. I want to avoid it. the selected item at ...
11
votes
1answer
4k views

Single intent to let user take picture OR pick image from gallery in Android

I'm developing an app for Android 2.1 upwards. I want to enable my users to select a profile picture within my app (I'm not using the contacts framework). The ideal solution would be to fire an ...
10
votes
0answers
647 views

Google+ Like Picture Gallery [closed]

I am looking for help in recreating this type of gallery: https://plus.google.com/photos/104987932455782713675/albums/posts The mosaic effect (perhaps a library) The hover image-expansion effect The ...
9
votes
3answers
3k views

Android: Align first item in Gallery to the left

When the Gallery first displays, it is centering the first item automatically. The behavior I want, is to left align the first item in the parent layout instead of centering it. How can I achieve ...
8
votes
7answers
353 views

TextView Within Gallery

i have scrollable TextView and Gallery when i enable the onTouchEvent for the TextView, i cant navigate throught the Gallery and if i disable the onTouchEvent, i can scroll right and left throught the ...
8
votes
4answers
6k views

Creating a custom Gallery - overriding onFling

So, I've followed this particular thread (How to stop scrolling in a Gallery Widget?) yet I am unable to get it to work properly. I've created a custom MyGallery class extending Gallery. I've added ...
8
votes
6answers
14k views

Image, saved to sdcard, doesn't appear in Android's Gallery app

I save an image to the sdcard and it doesn't appear in the Gallery application until I pull off the sdcard and return it back. Do you have any idea why is it so? Seems like the Gallery application ...
7
votes
4answers
2k views

Select multiple images from Photo Gallery on Android using Intents

I`m trying to select images from gallery, but i only found the way to select a single image. Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); ...
7
votes
3answers
7k views

Android: out of memory exception in Gallery

My app shows a list of 9 categories and each category displays a Gallery-based coverflow (graciously offered by Neil Davies here) with images of the selected category. The images are fetched from the ...
7
votes
5answers
6k views

Android: Programmatically animate between images in Gallery widget

I'd like to programmatically move between images in the Gallery widget, with animation. I can change the currently displaying image using the setSelection(int position) method, however that does not ...
6
votes
2answers
162 views

Multiple instances of Silverlight gallery

I wanted to try was to make an asp website which would include pictures in multiple Silverlight galleries. The reason why I want to do this is that I want something in this fashion: Text describing ...
6
votes
4answers
2k views

Gallery items overlapping (bleed in)

My probel is that images in my Gallery are bleeding in into each other once I begin scrolling towards the next image. I am using a android.widget.Gallery connected to a custom adapter I extended from ...
6
votes
2answers
880 views

Gallery/AdapterView Child Drawable State

I am using a Gallery view where the view corresponding to each item is non-trivial and consists of text as well as multiple buttons. When I click to drag the gallery view (somewhere not on one of the ...
6
votes
3answers
4k views

how to implement in endless gallery in android gallery application

Hi I am using gallary layout my application is running when gallary moving from left ti right it is infinite that means elements are repeated again,Here is no problem,But when we move from right to ...
5
votes
5answers
77 views

Image Gallery System - Which Approach is Better?

I am implementing an image upload system in PHP, The following are required: Have categories Allow users to comment on images Allow rating of images For that, I have 2 approaches in mind: 1. ...
5
votes
2answers
212 views

Jquery Ajax Thumbs gallery

I have been searching on google for days... and well I didn't find anything. I'm also not sure if stack overflow is the right place to ask my question, anyway... Anyone know a good jQuery Gallery ...
5
votes
2answers
176 views

A Responsive Photo-wall Gallery with Swipe Functionality

I'm looking to build a javascript/jquery gallery that meets the criteria below, and would love to know if there are any existing gallery modules that have all/most of these features: 1. Photo wall ...
5
votes
1answer
681 views

Android ICS emulator camera

I am trying to get a look at the Gallery application in ICS, using the emulator. So, I launch an AVD and snap a couple of pictures with the Camera then launch the Gallery. When I click any ...
5
votes
4answers
732 views

Gallery space at beginning and end

I got the following problem , i made a form with a gallery, the gallery instead of containing images contains items from one of my classes, everything inside each item of the gallery displays ...
5
votes
1answer
518 views

Gallery setSelection does not fires image selector

I have gallery widget, when you scroll it, currently selected image has border - just simple selector, like this <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item ...
5
votes
1answer
171 views

How does one structure a CMS?

So I am making a CMS, a gallery script via Object Oriented PHP. Anyways, the problem is now that I have the basic layout for the objects and such to the point where I need to start putting together, ...
5
votes
2answers
2k views

android pick images from gallery

I want to create a picture chooser from gallery. I use code intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, ...
5
votes
4answers
2k views

Android Gallery View Scrolling problem when onClickListener for items given

I have used gallery in my app. In that i have two images in each gallery item like this Each rabbit and mouse image is combined as a single gallery item. So I give onclickListener for both ...
5
votes
6answers
642 views

Smallest jQuery lightbox script

What's the smallest lightbox plugin for jQuery (in terms of size)? Something close to Fancybox, but smaller :)
5
votes
1answer
3k views

Text Gallery on Android?

I have a gallery with the TextView to achieve the segment controller on the image below. I can achieve it by the ApiDemo's Gallery Example but I am lagging on the look and feel of the gallery. I want ...
5
votes
1answer
707 views

Change Multiple Image Sources Javascript

I am creating a simple image gallery, and I would like to create multiple sets of images. On the click of a link all of the images in the link's given set will change. here is my current code: ...
5
votes
2answers
16k views

Android: Animation in Gallery View?

When I use the Gallery widget, how do I get the images to say scale up & glow on being selected and scaled down & un-glow on being unselected? All the tutorials I've seen have this effect but ...
5
votes
3answers
4k views

jQuery lightbox Gallery

Does a jQuery plug-in exist with standard lightbox functionality? In the "lightbox" window I'd like to show the current image and the rest as thumbnails somewhere (left, bottom, etc.) in the same ...
5
votes
6answers
18k views

What's the best jQuery “click a thumbnail and change the main image” module?

Here's what I have (all generated dynamically, if that makes a difference) : A list of images A caption for each image A thumbnail for each image The page should load with one full-size image and ...
5
votes
3answers
2k views

Is there a gallery of great application UI's that can be used for ideas?

I'm looking for websites that showcase screenshots of applications with exceptional UI design. I'm writing an application and am taking my time considering what the UI should look like. My audience ...
4
votes
1answer
1k views

Centering floating list items <li> inside a div or their <ul>

first of all here is my html code: <div class="imgcontainer"> <ul> <li><img src="1.jpg" alt="" /></li> <li><img src="2.jpg" alt="" ...
4
votes
2answers
454 views

Android: Gallery of Webviews

I am trying to build a horizontally scrolling set of webviews, using the Gallery widget. The problem is that I cannot swipe the views, which of course works for galleries of images. Following ...
4
votes
2answers
207 views

android Gallery with arbitrary aspect ratios

i wish to have an android gallery that will host images of varying aspect ratios. what i'd like is something like CENTER_CROP for the images in the gallery. however, when i set the image scale type to ...
4
votes
5answers
5k views

Android horizontal scroll list

I want horizontal scroll like Gallery. Im not using Gallery because its center locked. Can some one here would help me out with this So I can have horizontal scrolling list? I think best example of ...
4
votes
2answers
2k views

Embedding ListView inside Gallery

The goal is to implement a Gallery whose adapter returns ListViews (in other words, vertically scrolling ListViews embedded in a horizontally scrolling Gallery). It sort of works after a bit of work, ...
4
votes
1answer
415 views

Mimicking the “rubber band” effect from iOS in the Gallery on Android

I've got a Gallery class showing a bunch of images in an Android app, but since only one image is ever displayed at a time, it is difficult for the user to see when they have reached the first or last ...
4
votes
1answer
1k views

Android: Disable 'bounce' effect in custom Gallery

I have a custom gallery with 'fullscreen' items and I have overridden the onFling() method of Gallery. In this overridden function, I check if the user had 'flinged' to the left or right, and act ...
4
votes
2answers
1k views

Reusing default Android image gallery?

All the examples I've found online for displaying a gallery of images require creating a custom Adapter and doing a ton of manual work. Is there not an Intent that I can simply pass a path or filter ...
4
votes
1answer
710 views

Why is Gallery So Slow / Accessing GoogleLoginService?

I'm working on an app which allows users to view images, so I'm sending an intent to let the Gallery display the image. For some reason, it takes several seconds to display the image. LogCat shows it ...
4
votes
2answers
733 views

Android: how to change a low quality image to the hi quality one when the animation stops in gallery?

I want to do an image gallery like in iphone. I want to show low quality (pre-resized) images and when the image is active I want to process the big image and show the result in the gallery. I have ...
4
votes
1answer
2k views

Python-based Gallery web applications?

I'm trying to cut my last dependencies on PHP and MySQL. The last stumbling block is a image gallery I set up for a client a while ago. The whole website is built around Django and Zine, except for ...
3
votes
0answers
113 views

Gallery onItemClick and onTouchEvent don't work together since android version 3.0

I have a Gallery, which has an OnItemSelectedListener and an OnItemClickListener. So I can move between the pictures, and if i click on one, something else happens (depends on which i had clicked). It ...
3
votes
1answer
43 views

Javascript menu - copy javascript thumb gallery into each area doesn't work

I got a small problem with my webpage. http://sabinequardon.dk/Portfolio/#portfolio When you click on "photography" the gallery shows just fine, but then when you click on "photoshop" something's ...
3
votes
2answers
242 views

How does the three20 gallery load images?

On my server, I have three files per image. A thumbnail file, which is cropped to 128 by 128. A small file, which I aspect fit to a max of 160 by 240. A large file, which I aspect fit to a max of ...
3
votes
2answers
218 views

Android: drag item out of scrolling list/gallery

I want to implement a Gallery that allows the user to drag items out of it. This shouldn't get in the way of scrolling/flinging. Given the interface layout, the user can only drag items out of the ...
3
votes
1answer
278 views

Android Gallery - Replace Bitmap in ImageView after scrolling stopped

I've programmed a zoomable gallery with several images. The images can be zoomed. Zoomed images can be dragged. If the image is not zoomed, the gallery can be scrolled. The layout consists of a ...

1 2 3 4 5 21