-1
我的應用程序使用Volley網絡庫進行緩存並從服務器獲取數據,我需要將圖像緩存在磁盤中。在這裏,我可以將數據寫入磁盤,但DiskCache中的getBitmap()方法始終返回null。DiskBased Image cache returns null
以下是我DiskCache實施
public class DiskCache extends DiskBasedCache implements ImageCache{
public DiskCache(File cacheDir) {
super(cacheDir);
}
public DiskCache(File rootDirectory, int maxCacheSizeInBytes) {
super(rootDirectory, maxCacheSizeInBytes);
// TODO Auto-generated constructor stub
}
@Override
public Bitmap getBitmap(String url) {
// TODO Auto-generated method stub
final Entry requestedItem = get(url);
if (requestedItem == null){
LogUtils.LOGI("CACHE", "NO Valid Entry");
return null;}
return BitmapFactory.decodeByteArray(requestedItem.data, 0, requestedItem.data.length);
}
@Override
public void putBitmap(String url, Bitmap bitmap) {
// TODO Auto-generated method stub
final Entry entry = new Entry();
ByteBuffer buffer = ByteBuffer.allocate(getByteSize(bitmap));
bitmap.copyPixelsToBuffer(buffer);
entry.data = buffer.array();
put(url, entry);
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB_MR1)
public int getByteSize(Bitmap bitmap){
if(UIUtils.hasHoneycombMR1()){
return bitmap.getByteCount();
}
else{
return bitmap.getRowBytes()*bitmap.getHeight();
}
}
}
有一個問題?這裏,當你指定壓縮格式爲PNG時,是否有一種方法可以保持它的通用性,以便與PNG以及JPG等一起使用。 –