views:

373

answers:

1

I'm working on an app that needs to have the user select an image or video. On pre-2.1 devices, using ACTION_GET_CONTENT seems to work fine with multiple MIME types:

new Intent(Intent.ACTION_GET_CONTENT).setType("video/*, image/*")

However, on a Droid running 2.1, this gives a "There are no items in your collection". Using the same code with either "video/" or "image/" gives the desired result. Is there a way to get my 2.1 device to allow the user to select both types of content within a single Intent?

A: 

Was this issue solved then ? Are you able to select only one video or image or you can select multiple video or image items ?

Tee
No, I was never able to solve this. I ended up creating my own activity instead.
jjb