Honeycomb中如何获取外部内存分配?

发布于 2024-10-21 23:56:57 字数 271 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俯瞰星空 2024-10-28 23:56:57

Honeycomb 中完全删除了外部内存分配功能。

所有分配现在都显示在托管堆上。

The external memory allocation feature was removed entirely from Honeycomb.

All allocations now appear on the managed heap.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文