About bitmap recycle trying to use a recycled bitmap android.graphics.Bitmap

Source: Internet
Author: User

In the development, has been using more than 4.0 mobile phone as a test machine so has not appeared this problem, today changed the 2.3 version of the mobile phone, this error occurred:

Trying to use a recycled bitmap android.graphics.Bitmap


After checking the code, my picture recycling code is like:

public static void Recycle (view view) {
if (null = = view) {
Return
}


bitmapdrawable BD = (bitmapdrawable) view.getbackground ();
if (null = = BD) {
Return
}

Bitmap BM = Bd.getbitmap ();
if (null! = BM &&!bm.isrecycled ()) {
Bm.recycle ();
}
}


That is, after I have recycled the image, the view object is still referencing the image, causing the problem, and then changing to:

public static void Recycle (view view) {
if (null = = view) {
Return
}

bitmapdrawable BD = (bitmapdrawable) view.getbackground ();
if (null = = BD) {
Return
}


View.setbackgrounddrawable (NULL);
Bitmap BM = Bd.getbitmap ();
if (null! = BM &&!bm.isrecycled ()) {
Bm.recycle ();
}
}


Set the background picture blank, cancel the reference to the picture and then recycle.


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

About bitmap recycle trying to use a recycled bitmap android.graphics.Bitmap

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.