回收ImageView佔用的映像記憶體,imageview佔用映像

來源:互聯網
上載者:User

回收ImageView佔用的映像記憶體,imageview佔用映像

 

使用方法: RecycleBitmap.recycleImageView(mSelectorView);   參數為imageview

/**
* 回收ImageView佔用的映像記憶體;
* 使用了本方法之後,記得用一下
* System.gc(); 提醒系統及時回收

* @param view
* 在setImageResource()方法前面還沒有bitmap,圖片可以出來。
* 在其後面執行本方法的話,圖片就不會顯示出來。
* 在setImageBitmap()方法的前面還沒有bitmap,圖片可以出來。
* 在其後面執行本方法的話,圖片就不會顯示出來。
* 最好在onDestroy方法中執行本方法
*/

public static void recycleImageView(View view){        if(view==null) return;        if(view instanceof ImageView){            Drawable drawable=((ImageView) view).getDrawable();            if(drawable instanceof BitmapDrawable){                Bitmap bmp = ((BitmapDrawable)drawable).getBitmap();                if (bmp != null && !bmp.isRecycled()){                    ((ImageView) view).setImageBitmap(null);                    bmp.recycle();                    log("have recycled ImageView Bitmap");                    bmp=null;                }            }        }    }

 

 

 

使用方法:  RecycleBitmap.recycleBitmap(mNo_shop1Bitmap);  參數為bitmap

/**
* 可以釋放到Bitmap在C層申請的記憶體,recycle方法會把一些相關的引用計數置0.
* 回收Bitmap佔用的映像記憶體;
* 使用了本方法之後,記得用一下
* System.gc(); 提醒系統及時回收
* @param bitmap
* 在setImageBitmap()方法的前面和後面都會報異常,最好在onDestroy方法中執行
* RuntimeException:trying to use a recycled bitmap android.graphics.Bitmap@41c124e8
*/

 public static void recycleBitmap(Bitmap bitmap){            if(bitmap!=null&&!bitmap.isRecycled()){               bitmap.recycle() ;  //回收圖片所佔的記憶體               log("have recycled Bitmap");               bitmap=null;         }    }

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.