Skip to content Skip to sidebar Skip to footer

FATAL EXCEPTION - OutOfMemoryError

I have recieved the below error while trying to run my application: FATAL EXCEPTION, and OutOfMemoryError error, and have included the log cat message below: 10-16 11:40:09.819: E/

Solution 1:

Well, your exception occurs on separate thread and we can't see the faulty place directly in your code.
Still, it definitely happens during parse.

Let me suppose that the processed file is too big.
So try to comment out line imageView.setParseFile(image) or try with another image file.
When you find the place causing the error you should decide whether:
- you have to limit the size of the images
- convert images to reduce their size
- use some other approach with parsing


Post a Comment for "FATAL EXCEPTION - OutOfMemoryError"