我正在开发一个从服务器获取图片网址的应用。我必须使用该URL并设置图像背景。每件事都适合15-20分钟。那个应用程序崩溃后。
03-06 18:35:43.871:E / GraphicsJNI(22189):VM不允许我们分配93000字节
发生此错误时,它会在logcat中显示此行。任何解决方案?
答案 0 :(得分:1)
使用Bitmap
后,您应 recycle()
。此外,将所有位图包装到WeakReference
中,以便让垃圾收集器更轻松地释放资源。
Android应用程序具有非常严格的内存限制,在使用Bitmap
进行体操时很容易达到。
答案 1 :(得分:1)
发生这种情况的原因是因为您将大量图片设置到ImageView
,直到设备内存不足为止。
您应该做的是创建此图片的缩略图版本并将其应用于ImageView
。并且仅在单击此ImageView
时显示完整图像或根本不显示该图像。
您可以使用此方法从文件中获取图像的缩略图,但您必须先将设备上的图像保存到文件对象:
public static Bitmap decodeSampledBitmapFromFile(String path,
int reqWidth, int reqHeight) { // BEST QUALITY MATCH
// First decode with inJustDecodeBounds=true to check dimensions
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(path, options);
// Calculate inSampleSize
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
options.inPreferredConfig = Bitmap.Config.RGB_565;
int inSampleSize = 1;
if (height > reqHeight) {
inSampleSize = Math.round((float)height / (float)reqHeight);
}
int expectedWidth = width / inSampleSize;
if (expectedWidth > reqWidth) {
//if(Math.round((float)width / (float)reqWidth) > inSampleSize) // If bigger SampSize..
inSampleSize = Math.round((float)width / (float)reqWidth);
}
options.inSampleSize = inSampleSize;
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeFile(path, options);
}
答案 2 :(得分:0)
您应该确保正确处理,并且不要使用太大或留在内存中的图像。 请参阅android的文档
http://developer.android.com/reference/android/app/Application.html#onLowMemory%28%29
您可以覆盖onLowMemory()方法来管理内存使用情况。