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
当前使用的版本:3.10.7 出现问题:多图裁剪的时候,出现图片重复问题
查看源码,UCropMultipleActivity里initCropFragments方法中设置fileName 如下: String fileName = TextUtils.isEmpty(outputCropFileName) ? FileUtils.getCreateFileName("CROP_") + postfix : FileUtils.getCreateFileName() + "_" + outputCropFileName;
getCreateFileName方法是时间戳到毫秒级别处理的,但是此处是一个for循环,会出现名称重复问题, 想问下这里是不是可以进行修改一下!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
当前使用的版本:3.10.7
出现问题:多图裁剪的时候,出现图片重复问题
查看源码,UCropMultipleActivity里initCropFragments方法中设置fileName 如下:
String fileName = TextUtils.isEmpty(outputCropFileName) ? FileUtils.getCreateFileName("CROP_") + postfix
: FileUtils.getCreateFileName() + "_" + outputCropFileName;
getCreateFileName方法是时间戳到毫秒级别处理的,但是此处是一个for循环,会出现名称重复问题,
想问下这里是不是可以进行修改一下!
The text was updated successfully, but these errors were encountered: