我使用以下代码从画廊中挑选视频,该视频在棉花糖之前工作正常,但似乎不适用于奥利奥
try {
Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
i.setType("image/* video/*");
startActivityForResult(i, CAMERA_CAPTURE_VIDEO_REQUEST_CODE);
} catch (Exception e) {
e.printStackTrace();
}
我也试过这个但没有用
try {
Intent i = new Intent(Intent.ACTION_GET_CONTENT,
android.provider.MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
i.setType("*/*");
startActivityForResult(i, CAMERA_CAPTURE_VIDEO_REQUEST_CODE);
} catch (Exception e) {
e.printStackTrace();
}