查看ddms堆大小
与此主题相关< code>Android: OutofMemoryError....
如何查看 ddms (Eclipse) 上的堆大小?我只能跟踪分配情况,但什么也没有显示
In relation to this topic Android: OutofMemoryError....
How Can you see the heap size on ddms (Eclipse)? I can only track allocations and it doesn't show nothing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试从代码本机堆分配:
Debug.getNativeHeapAllocationSize()
You can try from code native heap allocation :
Debug.getNativeHeapAllocatedSize()
这显示了设备的最大堆内存,
这是您的应用程序所需的堆
this shows max heap memory of device
this is for heap required by your app