如何在处理图像视图时避免内存不足错误
How to avoid Out of Memory Error while handling Imageviews
在我的应用程序中,我从存储中选择一张照片或使用相机拍照,它将设置为图像 view.When 这样做我遇到了内存不足错误,为了避免这种情况,我使用了这个 method.But 它不工作,任何人都可以帮助解决这个问题。或者任何人都可以建议任何其他方法来处理这个问题。
public void decodeFile(String filePath) {
// Decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeFile(filePath, o);
// The new size we want to scale to
final int REQUIRED_SIZE = 1024;
// Find the correct scale value. It should be the power of 2.
int width_tmp = o.outWidth, height_tmp = o.outHeight;
int scale = 1;
while (true) {
if (width_tmp < REQUIRED_SIZE && height_tmp < REQUIRED_SIZE)
break;
width_tmp /= 2;
height_tmp /= 2;
scale *= 2;
}
// Decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize = scale;
bitmap = BitmapFactory.decodeFile(filePath, o2);
imgView.setImageBitmap(bitmap);
}
我建议使用库来处理图像的加载、缓存和显示。
它们易于使用,您不必处理图像缩小等问题。
在我的项目中,我使用 nostra13 的 Universal Image Loader。
它很容易实现,并提供许多功能,如内存和磁盘缓存。你应该试试看。
在我的应用程序中,我从存储中选择一张照片或使用相机拍照,它将设置为图像 view.When 这样做我遇到了内存不足错误,为了避免这种情况,我使用了这个 method.But 它不工作,任何人都可以帮助解决这个问题。或者任何人都可以建议任何其他方法来处理这个问题。
public void decodeFile(String filePath) {
// Decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeFile(filePath, o);
// The new size we want to scale to
final int REQUIRED_SIZE = 1024;
// Find the correct scale value. It should be the power of 2.
int width_tmp = o.outWidth, height_tmp = o.outHeight;
int scale = 1;
while (true) {
if (width_tmp < REQUIRED_SIZE && height_tmp < REQUIRED_SIZE)
break;
width_tmp /= 2;
height_tmp /= 2;
scale *= 2;
}
// Decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize = scale;
bitmap = BitmapFactory.decodeFile(filePath, o2);
imgView.setImageBitmap(bitmap);
}
我建议使用库来处理图像的加载、缓存和显示。 它们易于使用,您不必处理图像缩小等问题。
在我的项目中,我使用 nostra13 的 Universal Image Loader。 它很容易实现,并提供许多功能,如内存和磁盘缓存。你应该试试看。