I'm trying to implement a functionality that can be done in one of two ways. Our application creates "finds" that each have multiple images attached to them. These images are shown in a gallery, and when one is clicked, the picture is then shown in an enlarged gallery like the gallery application. We want to be able to only see images attached to the find in the enlarged view, but right now we can go through every image stored on the phone, although the gallery itself only shows the images that we want.
I didn't write most of this code, but from what I've gathered the intent ACTION_VIEW is used to get to the enlarged view onItemClick(). And from what I've read about ACTION_VIEW (and I could be wrong), there seems to be two ways for me to only see some images: 1) by getting a sub-uri (?) if possible that would give me some selection of images from mediastore instead of all of them, or 2) by storing the images in a separate space so I can get a different Uri for them. Are either or these possible / how would I implement that? Is there an easier way to get this functionality? Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

