可能重复:
Android:将图像加载到位图对象时出现奇怪的内存不足问题
OutOfMemoryError:位图大小超出 VM 预算:- Android
我有一个应用程序,用户可以在其中拍照或使用画廊中已有的照片,并附加到新闻,在将新闻保存在数据库中后(我只保存图像路径内容:/ / ...),我显示ListView 中的所有新闻,带有图像标题和日期。要在适配器中显示图像,我正在使用以下内容:
...
image.setImageURI(null);
System.gc();
image.setImageURI(Uri.parse(noticia.getIMAGEM()));
...
然而即使使用 System.gc(); 每个加载的新图像都在获取
12-12 14:59:37.239: E / AndroidRuntime (4997): java.lang.OutOfMemoryError: 位图大小超出执行者 VM 预算
也已经尝试使用
image.setImageURI(null);
System.gc();
在 onResume()、onPause()、onDestroy() 中,但没有任何效果。
还阅读了这篇文章:[链接][1]
if(!((BitmapDrawable)image.getDrawable()).getBitmap().isRecycled()){
((BitmapDrawable)image.getDrawable()).getBitmap().recycle();
}
Bitmap thumbnail = null;
try {
thumbnail = MediaStore.Images.Media.getBitmap(context.getContentResolver(), Uri.parse(img));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
image.setImageBitmap(thumbnail);
但后来我收到以下错误:
12-12 15:28:42.879: E/AndroidRuntime(5296): java.lang.RuntimeException: Canvas: 试图使用回收的位图 android.graphics.Bitmap@40756520
除了当我的列表视图上下滚动时它不断崩溃,我相信它正在请求图像..
我不知道还能做什么,有什么提示吗?
编辑:
我发现在解决这个问题的同一解决方案中的另一篇文章效果很好,但是我相信它需要一个图像缓存,因为当向上或向下滚动列表时,她战斗的那个,这对用户体验非常不利。有什么想法可以解决吗?
以下代码:
在适配器中:...
String imagePath = getPath(Uri.parse(img));
image.setImageBitmap(decodeSampledBitmapFromResource(imagePath, 85, 85));
...
方法:
public String getPath(Uri uri)
{
Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
cursor.moveToFirst();
int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
return cursor.getString(idx);
}
public static int calculateInSampleSize(
BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 2;
if (height > reqHeight || width > reqWidth) {
if (width > height) {
inSampleSize = Math.round((float)height / (float)reqHeight);
} else {
inSampleSize = Math.round((float)width / (float)reqWidth);
}
}
return inSampleSize;
}
public static Bitmap decodeSampledBitmapFromResource(String resId,
int reqWidth, int reqHeight) {
// First decode with inJustDecodeBounds=true to check dimensions
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(resId, options);
// Calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeFile(resId, options);
}