1. 程式人生 > >android中的OOM問題 解決原則

android中的OOM問題 解決原則

只要你記住下面幾個原則,在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