I’m developing an application that allows the user to pick an image from the gallery, but I want to be able to select images or videos when possible.
So far if I change:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
to:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("media/*");
The option to choose it from gallery is not visible, but other programs show up (like ASTRO)
Is there any way to detect programmatically whether the device has other program to select media/* or not, so I can choose what type I’m going to set in the Intent?
Call
PackageManagerwith this intent to know which applications handle this content type.From there, you can check the list size, or if list contains a given package name, and do te appropriate action.