我已经提到了更多关于我的问题。但我还无法解决我的问题,我无法预测为什么它会在特定设备上发生,尤其是 Galaxy S3。我也在其他设备上运行相同的应用程序,它工作正常。我使用 eclipse MAT 发现了内存泄漏。它正好在我的应用程序上使用的图像编辑类上。我没有尝试过 bitmap.recyle(),因为我在整个应用程序中都使用了它。ImageEditView 类用于在屏幕上显示图像。我已经使用下面的代码片段加载了位图。
private Bitmap decodeAndDownsampleImageURI(Uri uri) {
Bitmap bitmap = null;
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
options.inPurgeable = true;
BufferedInputStream in = new BufferedInputStream(getContext().getContentResolver().openInputStream(uri));
BitmapFactory.decodeStream(in, null, options);
in.close();
int scale = 1;
if (options.outHeight > IMAGE_MAX_SIZE || options.outWidth > IMAGE_MAX_SIZE) {
scale = (int) Math.pow(
2,
(int) Math.round(Math.log(IMAGE_MAX_SIZE / (double) Math.max(options.outHeight, options.outWidth))
/ Math.log(0.5)));
}
options = new BitmapFactory.Options();
options.inSampleSize = scale;
in = new BufferedInputStream(getContext().getContentResolver().openInputStream(uri));
bitmap = BitmapFactory.decodeStream(in, null, options);
in.close();
} catch (FileNotFoundException e) {
log.error(MyStyleApplication.hockeyAppLogMessage, e);
Log.e(TAG, "decodeAndDownsampleImageUri()", e);
} catch (Exception e) {
log.error(MyStyleApplication.hockeyAppLogMessage, e);
Log.e(TAG, "decodeAndDownsampleImageUri()", e);
}
return bitmap;
}
}
任何人请建议我更好的解决方案来解决我的问题。