How to filter only images and videos in the Android gallery?

How to filter only images and videos in the Android gallery?

Example:

intent.setType("image/*"); //returns only images intent.setType("video/*"); //returns only videos intent.setType("*/*"); //returns all videos,images, audios,contacts,etc.. 

I want only images and videos. How can i do this?

+6
source share
1 answer
 intent.setType("video/*, images/*"); 
-1
source

Source: https://habr.com/ru/post/903817/


All Articles