2012-11-08 141 views
0

我實現了listview用圖像和framelayout(含Linearlayout和按鈕)應用程序,當我在listview多次滾動從上到下再經過一段時間的應用程序被撞壞給錯誤:的OutOfMemoryError崩潰

outofMemoryError.

+1

很可能你沒有釋放圖像或加載太多的圖像。發佈Logcat輸出。 – PravinCG

回答

0

作爲由Fedor給出的偉大答案,你應該做下面的事情來解決你的問題。

要解決內存不足你應該做這樣的事情:

BitmapFactory.Options options=new BitmapFactory.Options(); 
options.inSampleSize = 8; 
Bitmap preview_bitmap=BitmapFactory.decodeStream(is,null,options); 

這inSampleSize選項可減少內存消耗。

這是一個完整的方法。首先它讀取圖像大小而不解碼內容本身。然後它找到最好的inSampleSize值,它應該是2的冪。最後,圖像被解碼。

//decodes image and scales it to reduce memory consumption 
private Bitmap decodeFile(File f){ 
    try { 
     //Decode image size 
     BitmapFactory.Options o = new BitmapFactory.Options(); 
     o.inJustDecodeBounds = true; 
     BitmapFactory.decodeStream(new FileInputStream(f),null,o); 

     //The new size we want to scale to 
     final int REQUIRED_SIZE=70; 

     //Find the correct scale value. It should be the power of 2. 
     int scale=1; 
     while(o.outWidth/scale/2>=REQUIRED_SIZE && o.outHeight/scale/2>=REQUIRED_SIZE) 
      scale*=2; 

     //Decode with inSampleSize 
     BitmapFactory.Options o2 = new BitmapFactory.Options(); 
     o2.inSampleSize=scale; 
     return BitmapFactory.decodeStream(new FileInputStream(f), null, o2); 
    } catch (FileNotFoundException e) {} 
    return null; 
} 

你可以參考Here更多描述。希望它能幫助你。