Honeycomb中如何获取外部内存分配?
在 Android 的 Honeycomb 版本之前,我跟踪了内存的外部分配 VMRuntime.getRuntime().getExternalBytesAllocation()
或使用 Debug.*ExternalAllocSize()
。现在,VMRuntime 在 Honeycomb 中不可用,并且所有 Debug.*ExternalAllocSize() 方法都返回 0,因为它们仅出于兼容性原因而保留。 有人知道如何在 Honeycomb 中获得外部内存分配吗?
In pre-Honeycomb versions of Android I tracked external allocation of memory VMRuntime.getRuntime().getExternalBytesAllocated()
or with Debug.*ExternalAllocSize()
. Now VMRuntime is not available in Honeycomb and all Debug.*ExternalAllocSize()
methods returns 0 as they remains only for compatibility reason.
Anyone knows how to get external memory allocation in Honeycomb?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Honeycomb 中完全删除了外部内存分配功能。
所有分配现在都显示在托管堆上。
The external memory allocation feature was removed entirely from Honeycomb.
All allocations now appear on the managed heap.