在以下行接收NPE
if( mCache.containsKey(key) ){
使用以下代码解码文件图片时,尝试将SoftReference WeakReference与hashmap一起使用。
private WeakHashMap<String, SoftReference<Bitmap>> mCache;
public Bitmap get(String key, BmpWrap image, BitmapFactory.Options options){
File root = mContext.getFilesDir();
String name = Activity.fullScreenActive ? image.name + ".png" : image.name
+ ".stat.png";
File img = new File(root, name);
if(key == null){
return null;
}
if( mCache.containsKey(key) ){
SoftReference<Bitmap> reference = mCache.get(key);
image.bmp = reference.get();
if( image.bmp != null ){
return image.bmp;
}
image.bmp = BitmapFactory.decodeFile(img.getAbsolutePath(), options);
mCache.put(key, new SoftReference<Bitmap>(image.bmp));
return image.bmp;
}
if( img.exists() ){
image.bmp = BitmapFactory.decodeFile(img.getAbsolutePath(), options);
mCache.put(key, new SoftReference<Bitmap>(image.bmp));
return image.bmp;
} else{
throw new RuntimeException("Boooom!");
}
}
private void scaleImage(BmpWrap image, BitmapFactory.Options options)
{
options.inTempStorage = new byte[16 * IMG_BUFFER_LEN];
options.inPreferredConfig = Bitmap.Config.RGB_565;
options.inDither = false;
try {
Field f = options.getClass().getField("inPurgeable");
f.set(options, Boolean.TRUE);
Field f2 = options.getClass().getField("inInputShareable");
f2.set(options, Boolean.TRUE);
} catch (Exception ignore) {
}
File root = mContext.getFilesDir();
String name = Activity.fullScreenActive ? image.name + ".png" : image.name
+ ".stat.png";
File img = new File(root, name);
// maybe it's jpeg
if (!img.exists()) {
img = new File(root, name.replace(".png", ".jpg"));
}
if (img.exists()) {
if (image.bmp == null || Activity.fullScreenSwitch) {
if (image.bmp != null)
image.bmp.recycle();
image.bmp = null;
**get(name, image, options);**
//image.bmp = BitmapFactory.decodeFile(img.getAbsolutePath(), options);
} else if (image.bmp == null) {
image.bmp = BitmapFactory.decodeResource(getResources(),
getResourceByString(image.name), options);
}
} else {
image.bmp = BitmapFactory.decodeResource(getResources(),
getResourceByString(image.name), options);
}
}
堆栈
12-16 18:30:42.724: E/AndroidRuntime(9955): FATAL EXCEPTION: main
12-16 18:30:42.724: E/AndroidRuntime(9955): java.lang.RuntimeException: Boooom!
12-16 18:30:42.724: E/AndroidRuntime(9955): at com.apk.View$Thread.get(View.java:259)
12-16 18:30:42.724: E/AndroidRuntime(9955): at com.apk.View$Thread.scaleImage(View.java:296)
12-16 18:30:42.724: E/AndroidRuntime(9955): at com.apk.View$Thread.resizeImages(View.java:326)
12-16 18:30:42.724: E/AndroidRuntime(9955): at com.apk.View$Thread.setSurfaceSize(View.java:515)
12-16 18:30:42.724: E/AndroidRuntime(9955): at com.apk.View.surfaceChanged(View.java:889)
答案 0 :(得分:0)
我认为这是,(这是针对NPE )
private WeakHashMap<String, SoftReference<Bitmap>> mCache;
类似的东西,
private WeakHashMap<String, SoftReference<Bitmap>> mCache = new WeakHashMap<String, SoftReference<Bitmap>>();
试试这个,让我知道发生了什么......
答案 1 :(得分:0)
NullPointerException表示当您尝试访问它时mCache
为空。并且发生RuntimeException是因为具有给定名称的内存中的文件不存在。
另外,你没有在问题中提出这个问题,但这似乎是恰当的说法。为什么需要使用WeakHashMap?它用于允许GC收集键不再在任何地方引用的条目。您使用字符串作为键,为什么要依赖它们是否可以访问?该机制应该让位图被垃圾收集,因此普通的HashMap到SoftReferences是你真正需要的。