Is there a way to use intent.setType() and supply multiple broad types (like images and video)?
I am using an ACTION_GET_CONTENT.
Actually, multiple mime-types are supported. Have you even tried it???
For example: intent.setType("image/*,video/*") will display photos and videos...
For me it works. It should work for you too...
[EDIT]: This works partially, as not all the gallery apps choose to implement support for multiple mime types filters.