如何仅过滤Android图库中的图像和视频?

jel*_*boi 7 android filtering

如何仅过滤Android图库中的图像和视频?

例如:

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

我只想要图像和视频.我怎么能做到这一点?

小智 1

intent.setType("video/*, images/*");
Run Code Online (Sandbox Code Playgroud)