如何仅过滤 android Gallery 中的图像和视频?
Posted
技术标签:
【中文标题】如何仅过滤 android Gallery 中的图像和视频?【英文标题】:How can I filter only images and videos in the android Gallery? 【发布时间】:2012-01-20 21:57:25 【问题描述】:如何仅过滤 android 图库中的图像和视频?
例如:
intent.setType("image/*"); //returns only images
intent.setType("video/*"); //returns only videos
intent.setType("*/*"); //returns all videos,images, audios,contacts,etc..
我只想要图片和视频。我怎样才能做到这一点?
【问题讨论】:
java2s.com/Open-Source/Android/android-platform-apps/Gallery/… 【参考方案1】:intent.setType("video/*, images/*");
【讨论】:
我什至尝试过,但并非所有设备都支持它,例如。在 Galaxy Ace 中,它说没有找到数据,在 HTC 中它只显示图像。以上是关于如何仅过滤 android Gallery 中的图像和视频?的主要内容,如果未能解决你的问题,请参考以下文章