We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
视频拍摄报错:MIME type video/mp4 cannot be inserted into content://media/external/images/media; expected MIME type under image/*
target:28 手机系统Android10 修复:MediaGridFragment.java中 getContext().getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues);这边需要判断,如果是视频要存另一个地方: Uri uri; if (image) { uri = getContext().getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues); } else { uri = getContext().getContentResolver().insert(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, contentValues); }
The text was updated successfully, but these errors were encountered:
同样的问题,只在android 10上出现,作者能否发个小版本优化
Sorry, something went wrong.
No branches or pull requests
视频拍摄报错:MIME type video/mp4 cannot be inserted into content://media/external/images/media; expected MIME type under image/*
target:28
手机系统Android10
修复:MediaGridFragment.java中
getContext().getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues);这边需要判断,如果是视频要存另一个地方:
Uri uri;
if (image) {
uri = getContext().getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues);
} else {
uri = getContext().getContentResolver().insert(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, contentValues);
}
The text was updated successfully, but these errors were encountered: