Is there a way to select multiple photos instead of just one using
Intent.ACTION_PICK?

I'm doing something like this:

                Intent photoPickerIntent = new Intent (Intent.ACTION_PICK);
                photoPickerIntent.setType("image/*");
                startActivityForResult(photoPickerIntent, 1);

which allows the user to click one photo, but as soon as they do the
dialog closes and you're back in your app.

Is there an easy way to do this, or do I need to write my own custom
dialog?

Thanks!
Kevin Hooke
-- 
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