I need to pick photo or video from the gallery.
But need to restrict video format for example only for mp4
and mov
or other specific later.
Can I achieve it with adding some options to this kind of code?
Intent i = new Intent(Intent.ACTION_OPEN_DOCUMENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
i.putExtra(Intent.EXTRA_MIME_TYPES, new String[]{"image/*", "video/*"});
startActivityForResult(i, requestCode);
Instead of
video/*
you should narrow it down tovideo/mp4
orvideo/quicktime
or both. Putting*
basically meansall video formats
.An example: