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