2011-12-15 44 views
6

我该如何过滤android图库中的图片和视频?如何仅过滤android图库中的图像和视频?

例如:

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

我只想图片和视频。我怎样才能做到这一点?

+0

http://www.java2s.com/Open-Source/Android/android-platform-apps/Gallery/com/android/camera/ImageGallery.java.htm – 2011-12-15 06:55:30

回答

-1
intent.setType("video/*, images/*"); 
+1

我甚至试过,但它不是支持所有设备,例如。在Galaxy Ace中,它表示没有发现数据,在HTC中它只显示图像。 – jellboi 2011-12-20 10:03:58