Hi,

I am trying to do the following in my app:

1. Open Gallery just the way it is on the phones (picture folders)
2. Select a folder (say for e.g. 'Camera Pictures')
3. Pick an Image and use it in my app (edit, send etc.)

I have implemented the Image picking feature as below but it doesn't
open the Gallery view that we have on the built-in Gallery App

Intent i = new Intent(Intent.ACTION_PICK);
i.setType("image/*");
startActivityForResult(i);

I am looking at opening the Gallery view, selecting a folder,
selecting an Image and passing the URI to my activity. Can anyone help
me?

Thanks,

Abhishek

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to