如何避免android上的进程的内存限…

The Android framework enforces a per-process 24 MB memory limit. On some older devices, such as the G1, the limit is even lower at 16 MB. 

What’s more, the memory used by Bitmaps is included in the limit. For an application manipulating images it is pretty easy to reach this limit and get the process killed with an OOM exception: 

E/dalvikvm-heap(12517): 1048576-byte external allocation too large for this process. 

E/GraphicsJNI(12517): VM won't let us allocate 1048576 bytes 

D/AndroidRuntime(12517): Shutting down VM 

W/dalvikvm(12517): threadid=1: thread exiting with uncaught exception (group=0x4001d7f0) 

E/AndroidRuntime(12517): FATAL EXCEPTION: main 

E/AndroidRuntime(12517): java.lang.OutOfMemoryError: bitmap size exceeds VM budget 

This limit is ridiculously low. For a device, like the Nexus One, with 512MB of physical RAM, setting the per-process memory limit for the foreground activity to only 5% of the RAM is a silly mistake. But anyway, that’s how things are and we have to live with it — i.e. find how to work around it. 

There are two ways to allocate much more memory than the limit: 

One way is to allocate memory from native code. Using the NDK (native development kit) and JNI, it’s possible to allocate memory from the C level (e.g. malloc/free or new/delete), and such allocations are not counted towards the 24 MB limit. It’s true, allocating memory from native code is not as convenient as from Java, but it can be used to store some large amounts of data in RAM (even image data). 

Another way, which works well for images, is to use OpenGL textures — the texture memory is not counted towards the limit. 

To see how much memory your app has really allocated you can use android.os.Debug.getNativeHeapAllocatedSize(). 

Using either of the two techniques presented above, on a Nexus One, I could easily allocate 300MB for a single foreground process — more than 10 times the default 24 MB limit. 

从上面来看使用navtive code分配内存是不在24MB的限制内的(open GL的texture也是使用navtive code分配内存的)。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值