gpt4 book ai didi

android - BitmapFun 示例存在缓存问题

转载 作者:太空狗 更新时间:2023-10-29 14:18:31 26 4
gpt4 key购买 nike

我正在使用 Android BitmapFun 示例代码来管理我的应用程序中的位图。我一直在 ViewPager 中遇到乱码或重复图像。我已将其追溯到 ImageCache.java 中的以下代码:

           /**
* Notify the removed entry that is no longer being cached
*/
@Override
protected void entryRemoved(boolean evicted, String key,
BitmapDrawable oldValue, BitmapDrawable newValue) {
if (RecyclingBitmapDrawable.class.isInstance(oldValue)) {
// The removed entry is a recycling drawable, so notify it
// that it has been removed from the memory cache
((RecyclingBitmapDrawable) oldValue).setIsCached(false);
} else {
// The removed entry is a standard BitmapDrawable

if (Utils.hasHoneycomb()) {
// We're running on Honeycomb or later, so add the bitmap
// to a SoftRefrence set for possible use with inBitmap later
mReusableBitmaps.add(new SoftReference<Bitmap>(oldValue.getBitmap()));
}
}
}

位图在从缓存中移除时被添加到可重用位图列表中。在这种情况下,位图仍由 ViewPager View 使用。当稍后的 View 被创建时,位图(仍在使用中)被重新使用并且位图出现在 ViewPager 中的两个位置。

从 LruCache 中删除的位图不一定可以重用。我已禁用此代码中位图的重用,并且不再有问题。较低分辨率的图像不会出现此问题,因为位图在 ViewPager 的屏幕外限制范围内时不会从缓存中删除。我对 60 DPI 图像没有问题,但在 160 DPI 时经常看到这个问题。我认为这会出现在具有更高分辨率图像的原始 BitmapFun 示例中。

还有其他人遇到过这个问题还是我没有正确理解这个问题?

凯文

最佳答案

我认为代码的问题是在行

mReusableBitmaps.add(new SoftReference<Bitmap>(oldValue.getBitmap()));

该行将从 LRU 缓存中删除的位图添加到可重用位图集以用于 inBitmap 重用。它不会检查它是否仍在被 ImageView 使用。如果您尝试重新使用 ImageView 仍在使用的位图,底层位图将被替换为另一个位图,使其不再有效。我的建议是在将位图添加到可重用位图集之前跟踪它是否仍在被 ImageView 使用。我创建了一个示例 github project对于这个问题。告诉我您对我的解决方案的看法。

关于android - BitmapFun 示例存在缓存问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19166616/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com