ImageView Memory overflow in Android

Source: Internet
Author: User

A memory overflow error is reported when loading a picture with ImageView:


Operation procedure: When the album is called in the app, after the URI is loaded into ImageView, the same action appears as the top exception.

Cause: The resource is not recycled after the resource has been read, and there is a limit within the picture operation in Android, so it overflows when called again.

Workaround:

Create an object first in the activity:

Private Bitmap Bitmap;

Here's how:

protected void Onactivityresult (int requestcode, int resultcode, Intent data) {Super.onactivityresult (Requestcode, ResultCode, data); Contentresolver resolver = this.getcontentresolver (); switch (requestcode) {case 0:try {if (bitmap! = null && BITMA p.isrecycled () = = False) {bitmap.recycle ();} Get the picture of Uriuri Originaluri = Data.getdata (); LOG.D (TAG, "URL address:" +originaluri); bitmap = Bitmapfactory.decodestream (Resolver.openinputstream (Originaluri)); image _data.setimagebitmap (bitmap);} catch (Exception e) {log.e (TAG, e.tostring ());} Break;default:break;}}


ImageView Memory overflow in Android

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.