2013-03-22 41 views
0

從庫中選取file時,僅列出照片。視頻文件也應該顯示。想在android中的圖庫中查看視頻和庫

進出口使用此代碼

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); 

回答

0

使用下面的挑兩個圖像和視頻。

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