Android OutOfMemoryError:?

前端 未结 8 1495
孤街浪徒
孤街浪徒 2020-11-28 06:02

I am sporadically getting an OutOfMemoryError: (Heap Size=49187KB, Allocated=41957KB) in one of my apps. What can I do to diagnose this?

  01-09         


        
8条回答
  •  [愿得一人]
    2020-11-28 06:48

    I solved the same problem by:

    • reduce image dimension from 5000x2500 to 320x240 - 1080x720 (few drawabls folders)
    • converting the PNG image to WEBP format. Its size has decreased 50 times (from 1.2 MB to 30 KB).

    https://developer.android.com/studio/write/convert-webp#convert_images_to_webp

提交回复
热议问题