我在将图像加载为位图时遇到问题,因此我使用以下方法:
"decodeSampledBitmapFromFile"
(包括实施)
我还将所有位图保存在 SdCard 上,每次我需要位图时,我都会从它与参数一起存储的路径中加载它:
decodeSampledBitmapFromFile(path,150,100);
Bitmap image_profile =decodeSampledBitmapFromFile(path,150,100);
并将图像位图设置到我需要的 imageView 中(每次我需要图像时,我都会从 sdCard 加载它。
但是,在加载大约 20 张图像后,我仍然会收到 OutOfMemoryException。
那么,OutOfMemoryException 的解决方案是什么?
为什么即使在加载少量图像(大约 20 个)后我也会得到 OutOfMemoryException?
他们成功的 facebook、instagram 或 youtube 等应用程序的秘诀是什么
加载大量图像而没有异常?
我尝试了一切,但我仍然得到异常。
anyOne 有进一步的建议,为了避免这种异常,我可以实施什么?
多谢
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);
}