Tuesday, 2 August 2011

Uploading images from gallery to application

If we want to upload the images ,that are exist in the gallery into our app ,there is a snippet as follows


 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
 intent.setType("image/*");
 startActivityForResult(intent, IMAGE_PICK);

Click here for source

No comments:

Post a Comment