android中的OOM問題 解決原則
阿新 • • 發佈:2019-01-04
只要你記住下面幾個原則,在android 中處理圖片的OOM問題絕對是easy之極:
1.超大圖片要按比例壓縮之後才做顯示,退出當前activity 必須回收
[java] view plaincopy
- public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId,
- int
- // First decode with inJustDecodeBounds=true to check dimensions
- final BitmapFactory.Options options = new
- options.inJustDecodeBounds = true;
- BitmapFactory.decodeResource(res, resId, options);
- // Calculate inSampleSize
- options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
- // Decode bitmap with inSampleSize set
- options.inJustDecodeBounds = false;
- return BitmapFactory.decodeResource(res, resId, options);
- }
關於inSampleSize 可根據自己的實際情況去定。
[java] view plaincopy
- if (bitmap != null && !bitmap.isRecycled()) {
- bitmap.recycle();
- bitmap = null;
- }
2.大圖片(30~50k)的可直接顯示,退出當前activity 立即回收
[java] view plaincopy
- if (bitmap != null && !bitmap.isRecycled()) {
- bitmap.recycle();
- bitmap = null;
- }
3.大量的小圖 或者不同size的圖片要展示,請參看另外一篇LRU演算法快取圖片的:http://blog.csdn.net/androidzhaoxiaogang/article/details/8211649