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?
source share