Questions tagged [android-gallery]

Questions regarding using Android gallery application. Gallery application is the official media app installed on all Android mobile devices. The app allows browsing, organizing, sharing and editing of media (photos and videos).

Gallery application is the official media app installed on all Android mobile devices. The app allows browsing, organizing, sharing and editing of media (photos and videos).

Reference: Android Developers Gallery class overview

1181 questions
0
votes
1 answer

How to place a textview on Gallery in android?

In my application i have gallery view , i am displaying images from database in gallery,i need to place a text view on gallery item and change the text view value based on gallery position.So,how i can place text view on gallery.please can any one…
0
votes
1 answer

android OutOfMemoryError when using gallery

i'm trying to build ADW Theme application which has about 100 images and i have activity that has galley to show 4 images and imageview to preview those images but when i open that activity the application gives me OutOfMemoryError i tried to Load a…
mahmoud
  • 232
  • 3
  • 10
0
votes
2 answers

Why could not find the android.widget.gallery class? how to fix it?

There is a error which displays the XML. It says: The following classes could not be found: Gallery (Change to android.widget.Gallery, Fix Build Path, Edit XML) The gallery.java exists in the widget file. Why is there a error, and how do I fix…
0
votes
2 answers

save images to sdcard with thumbnails and pass it to a gridview without using the Gallery content provider?

I am making an app which downloads images from the web and stores them in sdcard before displaying them in a grid view. After googling a long time, i saw that it s possible to use the built-in gallery app content provider, wich generates thumbnails…
S.Thiongane
  • 6,883
  • 3
  • 37
  • 52
0
votes
1 answer

Customize Share Intent Android

i want to share images from gallery to my App i am using the following code to do that but i am not able to see myApp in Share option. i am using Android mobile version - 4.0.3 Mcode: Manifest File:
madan V
  • 844
  • 3
  • 19
  • 40
0
votes
1 answer

Image Gallery does not show anything

i have a problem while doing Photo gallery. I am retrieving the from the network. The problem is that the images are not been able to set in the gallery. I know i might be doing some silly mistake somewhere. Can anyone please help me with this. Here…
Droid
  • 419
  • 4
  • 15
0
votes
1 answer

Refresh Image Content

Here I trying to develop paint application based on specification. I used andengine and android both for this application development. I can able to save user created image and load that particular image into canvas. These both operation work…
Siddharth
  • 4,142
  • 9
  • 44
  • 90
0
votes
1 answer

Image Gallery and Retrieving image from server

I am making a gallery for my application in which the images are on the serve. There are total of 4 images in my database. What i want is to retrieve those images and show them on the gallery. I came across many examples from "SO" and…
Droid
  • 419
  • 4
  • 15
0
votes
1 answer

Is it possible to filter out my own app from "picking from gallery"?

So I have defined my app to accept other apps to open it as Gallery to pick a photo.
westkit
  • 21
  • 1
0
votes
1 answer

Android Gallery, Images way to the right

I'm trying to make a gallery using this code http://developer.android.com/training/animation/zoom.html i'm trying to make 3 across and 6 down but the other images past the first row are way off the screen to the right. Any advice to get the other…
user2407147
  • 1,508
  • 2
  • 22
  • 40
0
votes
1 answer

Get image content failing to open Gallery folders

Im creating an image converter app and need the user to select the image file from the device, im using an emulator and when i start the intent to pick a file from the gallery it displays the images in their folders but on clicking a folder, it just…
Asiimwe
  • 2,199
  • 5
  • 24
  • 36
0
votes
1 answer

HorizontalListView how to fill with array of images?

I´m beginner programmer in android, and i need to change my gallery control, and read about Devsmart horizontallistview control, but i can´t run it. I use an array of integers from web service to fill dynamically my old gallery control. How i can…
Javier dc
  • 565
  • 6
  • 14
0
votes
1 answer

Image Gallery in Fragment Error

I'm trying to make an app with an image gallery in it inside a fragment, but not getting errors in the code but getting this error below. Any help would be awesome, only a beginner. If you wish any more details just ask. Think its something to do…
user2407147
  • 1,508
  • 2
  • 22
  • 40
0
votes
1 answer

Any method to make the image in imageSwitcher can pinch zoom pan?

i was using ImageSwitcher And Gallery Demo Activity. But the demo image cannot be zoom. any method can make the ImageSwitcher zoom?
cj7
  • 15
  • 2
  • 3
0
votes
1 answer

open image from drawable using android gallery app

My app has 12 pictures saved in drawable, and i made on a list of 12 item, so if any item pressed it should open the corresponding image. I want to open these images by default gallery application. i tried this Intent intent = new Intent(); …