Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i m working with one application that have one functionality to upload multiple images from android inbuilt Gallery/Camera . i had upload single image using below this URL

. my exact requirement is that when i click on Button (upload from gallery) than inbuilt Gallery will be open . i am able to select single/multiple images from this Gallery and upload selected images to my Server . Any one have idea please help me how can i make this possible ?

Thanks in Advance !!!

share|improve this question

1 Answer

Take a look at this post on stackoverflow. Given that you want to use the inbuilt gallery this post answers your question.

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

If you choose not to use the inbuilt gallery then I recommend reading this http://developer.android.com/resources/tutorials/views/hello-gridview.html

Both solutions shall work but which one you want to use will be dictated by your application requirements.

share|improve this answer
Thanx alot .. your link is help to opne inbuGallery from button click event. But my main concern is that How to upload select and upload multiple images which we had select from inbuilt Gallery ? – Coder Feb 21 '12 at 14:04
As far as I know you can only do single select on the gallery (but I may be wrong since I have not used gallery in such a way so please double check this in Android Documentation). I would suggest going through the example in the second link in my answer. When you select an image simply add the image name to a vector and then in your async task simply go through all the entries in the vector, assuming here that your async task has the Url to which you want to upload. – Orlymee Feb 21 '12 at 17:05
This is half the answer. Any chance you have an example of uploading multiple images to a server (at once, not just uploading a single image multiple time sequentially). – Kyle Feb 14 at 9:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.