- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了错误
Can't call reconfigure() on a recycled bitmap
使用 Glide 库加载图像时。 5 次中有 1 次出现此错误。图片大小约为 1.5MB。
我使用的是 Glide 3.8.0 版本。
这是我的转换代码:
public class ScaleToFitWidthHeightTransform extends BitmapTransformation {
int mSize = AppConstants.HEIGHT_TRANSFORM_LIMIT; //1020
boolean isHeightScale;
public ScaleToFitWidthHeightTransform(Context context) {
super(context);
}
public Bitmap transform(Bitmap source) {
float scale;
int newSize;
int sourceHeight = source.getHeight();
int sourceWidth = source.getWidth();
// If original bitmap height/width is less then the height/width transform limit
// then no need to scale the bitmap, so return the original bitmap
if (sourceHeight < AppConstants.HEIGHT_TRANSFORM_LIMIT && sourceWidth < AppConstants.WIDTH_TRANSFORM_LIMIT) { // Height and width limit is 1020.
return source;
}
Bitmap scalBitmap;
if (sourceHeight > sourceWidth) {
scale = (float) AppConstants.HEIGHT_TRANSFORM_LIMIT / source.getHeight();
newSize = Math.round(source.getWidth() * scale);
scaleBitmap = Bitmap.createScaledBitmap(source, newSize, mSize, true);
} else {
scale = (float) AppConstants.WIDTH_TRANSFORM_LIMIT / source.getWidth();
newSize = Math.round(source.getHeight() * scale);
scaleBitmap = Bitmap.createScaledBitmap(source, mSize, newSize, true);
}
if (scaleBitmap != source) {
source.recycle();
}
return scaleBitmap;
}
@Override
protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
return transform(toTransform);
}
@Override
public String getId() {
return "com.abc";
}
这是我使用 Glide 的行
Glide.with(context)
.load(imageUri).asBitmap()
.transform(new ScaleToFitWidthHeightTransform(context))
.placeholder(defaultDrawable)
.error(defaultDrawable)
.into(new SimpleTarget<Bitmap>() {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
BitmapSourceData bitmapSourceData = null;
bitmapSourceData = new BitmapSourceData();
bitmapSourceData.setBitmapSource(getBitmapBytes(resource));
if (imageView != null) {
imageView.setImageBitmap(resource);
}
}
@Override
public void onLoadFailed(Exception e, Drawable errorDrawable) {
super.onLoadFailed(e, errorDrawable);
Log.e("ABC", "Exception --> " + e.toString());
}); // Here I am getting error printed.
我在网上搜索过。它说这是由于使用了回收的位图,但我无法修复它。那么我做错了什么?
最佳答案
你在这里回收了位图..
if (scaleBitmap != source) {
source.recycle();
}
不要这样做..
另外,createScaledBitmap 是一个非常繁重的操作,避免使用它。您可以使用 Canvas 和矩阵缩放位图。
关于android - 使用 Glide : Can't call reconfigure() on a recycled bitmap 加载图像时遇到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50332797/
使用 C#、.NET Core 3.1 我在 startup.cs 中添加了一个单例 httpclient: services.AddHttpClient().ConfigurePrimaryHttp
我需要在我的生产服务器上运行以下命令: EXEC sp_configure 'xp_cmdshell', 1; GO RECONFIGURE; GO 我的问题是,在生产环境中运行这个命令有什么危
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwa
文章在这里 http://en.wikipedia.org/wiki/Reconfigurable_computing#Example_of_a_streaming_model_of_computat
我想默认“接受”新证书。我尝试了以下方法。 $ dpkg-reconfigure -f noninteractive ca-certificates 它运行,但没有添加 CA。 如果不行,直接修改/e
我遇到了错误 Can't call reconfigure() on a recycled bitmap 使用 Glide 库加载图像时。 5 次中有 1 次出现此错误。图片大小约为 1.5MB。 我
我在 Ubuntu 16.04 服务器上设置了一个综合包 gitlab-ce 版本 8.12.7。我运行了 sudo gitlab-ctl reconfigure 并且第一次运行良好。然后我从我从 8
我正在 Vagrant box (Debian 18.04 LTS) 中安装 Gitlab-ce Omnibus。在我的供应脚本中,我运行 gitlab-ctl reconfigure。我得到一个错误
我正在尝试将我的 Java WindowBuilder SWT 应用程序重新配置为 64 位,而不是 32 位。 我的开发机器是Windows(Win7,64位),但代码也需要在CENTOS上运行。一
我正在创建一个 extjs 网格面板,它有一组用户可配置的列。 Ext.grid.Panel组件为此目的提供了一个方便的 reconfigure(store, columns) 方法。 此方法可按预期
(我需要以下内容的原因并不重要) 我想要做的是调整以下内容,以便它执行存储过程,这通常需要 30 分钟,但该过程会在 60 秒的设定时间后停止 - 实际上与我在 SSMS 运行该程序并在 60 秒后按
我正在将一些 ExtJS 4 的内容迁移到 ExtJS 5.1。我有一个网格,它从服务器获取元数据并在元更改事件上重新配置存储: store: Ext.create('Ext.data.Store',
我正在尝试让 VirtualBox 在内核 3.2.0-49-generic 的 ElementaryOS 上工作。我一直收到此错误: WARNING: The character device /d
我一直在修改 Linux 无线驱动程序 (ath9k) 以实现通知 channel 宽度操作框架。 需要做的一件事是在不中断数据传输的情况下在 HT20 和 HT40 之间更改 STATION 的 c
这是我第三次在服务器上安装 gitlab 并且以前从未出现过问题。 在处理 12.9.0 上的问题后,我决定重新安装 gitlab-ce ( 12.10.0 )。 在安装新版本之前,我已确保删除所有
我是一名优秀的程序员,十分优秀!