Hi All,
          I want to launch Gallery app for image selection. I am using
following code,

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), 1);

But its launching ImageGallery activity, and directly going inside "All
pictures" folder which includes images from all folders. Whereas I am
looking for a parent level view, so that user can go inside other folders
also.

Any ideas ?

Thanks in advance,

Swapnil

-- 
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

Reply via email to