希望视频和库都在android中的库中

时间:2013-03-22 05:49:19

标签: android android-intent

从库中选择file时,仅列出照片。还应显示视频文件。

我正在使用此代码

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),SELECT_PICTURE);

1 个答案:

答案 0 :(得分:0)

使用以下选择图像和视频。

Intent mediaChooser =new Intent(Intent.ACTION_GET_CONTENT);
//comma-separated MIME types
mediaChooser.setType("video/*, images/*");
startActivityForResult(mediaChooser,IMAGE_PICK);