Android:图片/ png的意图显示列表中的mp4视频

时间:2013-03-15 02:21:01

标签: android video android-intent android-image

我想将图片加载到我的应用程序,并通过使用intent.setType方法向用户提供显示他/她可用的所有图像的意图:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);  
intent.setType("image/png");

尽管有一个单独的视频类型(“视频/ mp4”),我还没有使用(永远),mp4视频出现在列表中。

有没有办法明确阻止视频显示在列表中?或者我唯一的赌注是事后检查用户是否没有选择视频?

1 个答案:

答案 0 :(得分:0)

答案是将此添加到您的意图中。

i.setType("image/*");