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
在Android Q上长按拍摄,提示:“打开相机失败“,”点击“√”,无反应,也无法返回,停留在拍摄界面; 按home键回到手机桌面,点击APP,闪回拍摄界面——启动页回到消息界面;多次尝试之后,闪回启动页后,直接退出APP; 录制时间过短,再次长按,无法继续录制,可以返回消息界面,然后点击拍摄,直接退出APP
The text was updated successfully, but these errors were encountered:
@hexiaxia0911 我重写的支持q
Sorry, something went wrong.
jCameraView.setSaveVideoPath(Environment.getExternalStorageDirectory().getPath() + File.separator + "JCamera");
修改为
jCameraView.setSaveVideoPath(getExternalFilesDir("video").getPath() + File.separator + "JCamera");
把传入的视频保存路径替换成私有目录的路径就不会有问题了,规避掉Android Q的范围存储。
@yyzzd 确实可以
No branches or pull requests
在Android Q上长按拍摄,提示:“打开相机失败“,”点击“√”,无反应,也无法返回,停留在拍摄界面;
按home键回到手机桌面,点击APP,闪回拍摄界面——启动页回到消息界面;多次尝试之后,闪回启动页后,直接退出APP;
录制时间过短,再次长按,无法继续录制,可以返回消息界面,然后点击拍摄,直接退出APP
The text was updated successfully, but these errors were encountered: