android中的OOM问题 解决原则

来源:互联网 发布:疯狂追星 知乎 编辑:程序博客网 时间:2024/05/01 02:56

只要你记住下面几个原则,在android 中处理图片的OOM问题绝对是easy之极:

1.超大图片要按比例压缩之后才做显示,退出当前activity 必须回收

[java] view plaincopy
  1. public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId,    
  2.         int reqWidth, int reqHeight) {    
  3.     
  4.     // First decode with inJustDecodeBounds=true to check dimensions    
  5.     final BitmapFactory.Options options = new BitmapFactory.Options();    
  6.     options.inJustDecodeBounds = true;    
  7.     BitmapFactory.decodeResource(res, resId, options);    
  8.     
  9.     // Calculate inSampleSize    
  10.     options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);    
  11.     
  12.     // Decode bitmap with inSampleSize set    
  13.     options.inJustDecodeBounds = false;    
  14.     return BitmapFactory.decodeResource(res, resId, options);    
  15. }    


关于inSampleSize 可根据自己的实际情况去定。

[java] view plaincopy
  1. if (bitmap != null && !bitmap.isRecycled()) {  
  2.                     bitmap.recycle();  
  3.                     bitmap = null;  
  4. }  
2.大图片(30~50k)的可直接显示,退出当前activity 立即回收
[java] view plaincopy
  1. if (bitmap != null && !bitmap.isRecycled()) {  
  2.                     bitmap.recycle();  
  3.                     bitmap = null;  
  4. }  

3.大量的小图 或者不同size的图片要展示,请参看另外一篇LRU算法缓存图片的:http://blog.csdn.net/androidzhaoxiaogang/article/details/8211649 
原创粉丝点击