gallery

How do I dynamically populate a Gallery view with thumbnails from the camera ?

In the adapter for the gallery, I'm using setImageBitmap(...), but it is never displayed. If I use a plain ImageView, the thumbnail is displayed, so I know I'm getting a valid result back from the cam. How do I dynamically populate a Gallery view with thumbnails from the camera ? ...

Add description to Android Gallery - (Pictures and text)

Hi to all! I'm working on my new project but I can't figure out how to add a text under my Gallery. I have 3 pictures, if I slide on picture 2 I can see under picture 1 and 3 the correct description but it doesn't appear the description under the selected picture (in this case the number 2). This is my code: public void onClick(View ...

How to receive multiple gallery results in onActivityResult

Hey guys, I want to start the gallery via intent and want to get the results in my onActivityResult method. All works fine if i click on one pic. The question ive got now is, how do i get the results, if i choose more than one picture in the gallery? If found hcpl´s code, which does it for one picture: public class BrowsePicture extend...

Android - How can I make a horizontally-scrolling ListView?

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 extensible starting point. I'll be damned if I'm going to roll my own ListView, when all I want is to take the thing and turn it on its sid...

Integrating 'Simplegallery' Jquery Plug-in with multiple gallery instances

Hello all, My developer friend told me of this site, and I'm hoping that perhaps someone might be able to help me solve a problem that I'm running into on any and all browsers while building the portfolio section of this website for my friend at her website which is (sorry for only being able to link one thing.... www - jennaschweitzer ...

How can I see all the images in Sliding Image Gallery plugin in jQuery?

Hello, I want to do the effect presented by Mead Miracle http://www.meadmiracle.com/SlidingGallery.aspx . So I am using this plug-in in jQuery. What I want is to navigate through all the images and not only three. So I want to have all the images shown and do the same effect. Does anyone know if I should change a parameter or is somethin...

How can I make the gallery circular in jCoverFlip plugin jQuery?

Hello, i am using jCoverFlip (http://www.jcoverflip.com/) plugin for a gallery in my site. What I want to do, is to make this gallery circular. Does anyone know how can I do this? Thanks ...

Is there an customizable picture gallery service which can be included into an website and an iPhone app?

I need an image gallery solution which can be used with an simple API for uploading photos from the web as well as from the iPhone / iPod touch / iPad, and then view those photos on the web as well as on the mobile devices. Basically what I want to do is this: My cookbook app has recipes for yummy meals. I want to add an global image ga...

how to overlap a horizontal gallery with a vertical gallery

I'm an android-newbie and I'm looking for a solution, how to overlap a horizontal-scrolling image-gallery with a vertical-scrolling image-gallery. that means one transparent image of the vertical-scrolling gallery should overlap one image of the horizontal-scrolling gallery (like a cross). furthermore it should be possible to scroll ei...

Rails passing @variable from one show page to another

I have a Gallery application that has Album and Photo models. I have the user search in the Album's show view (search in the specific album) and I store the results in a variable named @search in the show action of the controller. I want to pass this variable to the Photo model's show page so when a user clicked on a particular pictur...

ArrayAdapter of a dynamic size in Android

I need a gallery to be able to hold up to thirty custom views. These views need to added or removed whenever, they also need to be able to be display in a display bow beneath the gallery. How do I do this? I looked at the doc file for arrayadapter but it requires me to use a reference Id for each view I add, but each view is all java cod...

...

    Android proper use of setId()?

    I am working on a gauge set that will have multiple faces(views) of a gauge. Also the set must be able to be expanded or shrink according to use ie maybe a linkedlist. When I set the gauge/view thereof up with a hard coded xml id and put the gauge into a gallery, it kind of works. However, I need to add multiple of these gauges into the ...

    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 BaseAdapter. The adapter's GetView() method is like this public View getView(int position, View convertView, ViewGroup parent) { ...

    Wordpress Plugin: Strange Browser specific issue with NextGen Gallery

    This is really strange. I use the Latest versions of "NextGen Gallery" and "Effects for NextGEN Gallery" plugins on WP 3.0.1. Without "Effects for NextGEN Gallery", Lightbox won't work on NGG. I enabled Lightbox in Effects for NGG, and it works... But strangely, it works fine only in Opera and IE browsers. When opened in Chrome, Safari o...

    Gallery layout problems...

    Hi everyone, I'm trying to create a gallery in my Android project, but can't seem to make it work as it should. Here is what I am trying to do: Basically, I want a gallery that displays only one picture, but still has the same controls (sliding left and right). I'm getting the pictures asynchronously from the internet. Where am I at ...

    Simple jQuery gallery and sortable: one last missing piece...

    Hey there, So, I've built-up a little gallery using a few plug-ins and some custom code. This is for a few photography website portfolios. So far, I've got the thumbnails in a UL on the left, and the larger image on the right. I've got some hover effects on the thumbnails, and onClick they fadeOut the larger image, swap SRC, load, then ...

    Android: How to have a Gallery with a changable icon overlayed upon each image?

    Hello, I'm a bit stuck as to the best strategy to achieve the following: I've got an array of images, which I want to display in a Gallery. I want each image to have a small icon overlayed inside it, on the bottom right hand corner (e.g. a light bulb). When the user clicks on the image or the icon, the icon will change from the 'lighb...

    Autorotation on a gallery - willAnimateRotation... isn't invoked.

    I'm using this. I've put this in where the images are added: self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; I've put these overrides in SlideShowViewController: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{ return YES; } -(void)willAnima...

    Query about SlideShow Implementation.

    HI All, I'm trying to implement Dynamic SlideShow of Images similar to Gallery on Android Platform. On Drag, I Should be able to change to next images. I'm looking into Gallary1.java class from APIDemo Example, I think there is no sufficient information in that, so is there any better code example which could help me..! ...