当前位置: 代码迷 >> 综合 >> Android错误:android out of memory on a xxxxx-byte allocation解决方法
  详细解决方案

Android错误:android out of memory on a xxxxx-byte allocation解决方法

热度:24   发布时间:2023-12-17 22:44:59.0

发生内存溢出,一直找不到溢出的原因,后来看到这两篇网页,终于解决。

http://stackoverflow.com/questions/19232257/exception-dalvikvm-heap1099-out-of-memory


http://stackoverflow.com/questions/16445635/galaxy-s4-and-maybe-all-hd-phones-out-of-memory-error-inflating-layout


我的程序里就是在xml中使用了background png,并且是在ViewPager里,同时打开了四张相同的背景图,所以造成了内存溢出。不使用背景图,使用纯色,就不会了。

  相关解决方案