Android - 有没有一种 SDK 方法可以找出由 pid 标识的进程消耗的确切内存量?
我想单独检查每个正在运行的进程的内存消耗, 猫 /proc//statm 可以,但是为每次检查打开 shell 非常耗时,而且可能不是最好的方法。有什么建议如何使用 SDK 来做到这一点吗?
I would like to check the memory consumption of each running processes individually,
cat /proc//statm
is ok, but opening a shell for each check is time consuming, and maybe not the best way. any advices how to do it with the SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答是“你可以做到,但它非常复杂”。看看这个类似的问题< /a>,其中一位 Android 软件工程师对这个问题进行了长时间的讨论。
The short answer is "You can do it, but it's very complicated". Have a look at this similar question, where one of the Android software engineers gives a long discussion of the issue.