画像のキャッシュにhttps://github.com/thest1/LazyListを使用しています。画像を全画面表示する必要があります。しかし、画質には大きな損失があります。元の画像を取得するためにどのコードを変更する必要がありますか。事前に感謝します。
質問する
1194 次
2 に答える
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 に対して脆弱になることに注意する必要があります。
于 2012-07-20T11:35:24.450 に答える
0
あなたImageLoader.java
の機能で
//decodes image and scales it to reduce memory consumption
private Bitmap decodeFile(File f)
画像のスケーリング/サイズ変更に使用されます。
final int REQUIRED_SIZE=70;
これを増やすと、画像の品質が向上します。200くらいにして試してみてください。
于 2012-07-20T11:36:25.890 に答える