我正在使用https://github.com/thest1/LazyList进行图片缓存。我必须全屏显示图像。但是图像质量有很大的损失。 我必须改变哪些代码才能获得原始图像。谢谢。
答案 0 :(得分:5)
在ImageLoader类中查找此方法,
private Bitmap decodeFile(File f){
try {
//decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f),null,o);
//Find the correct scale value. It should be the power of 2.
final int REQUIRED_SIZE=70;
int width_tmp=o.outWidth, height_tmp=o.outHeight;
int scale=1;
while(true){
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
scale*=2;
}
//decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize=scale;
return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
} catch (FileNotFoundException e) {}
return null;
}
并从此方法中删除以下行,
while(true){
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
scale*=2;
}
这将确保您的图像根本不会缩放。
但是你必须记住,如果你这样做,你的应用程序很容易受到OOM的攻击。
答案 1 :(得分:0)
在ImageLoader.java
函数中
//decodes image and scales it to reduce memory consumption
private Bitmap decodeFile(File f)
用于缩放/调整图像大小。
final int REQUIRED_SIZE=70;
增加此值以提高图像质量。使它成为200或其他东西并尝试。