How to get photos from sd to gallery? Pls help me!!

sanne

Member
Mar 1, 2011
1
0
Hey all!!
I just bought a wowpad, everything is working properly except when i want to get photos on it. When i put photos on my sd and put the sd in my tablet i can just find them in the wowfilemanager and they dont show in my gallery (where i want them) Can anybody help me? this is driving me crazy! :) I dont know alot about these things and i would appreciate any help!
 

justinepeter

Member
Feb 28, 2011
40
0
Do this to launch the gallery and allow the user to pick an image:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, IMAGE_PICK);
Then in your onActivityResult() use the URI of the image that is returned to set the image on your ImageView.
 
Top