2011-12-15 75 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