Android 性能优化(23)*性能工具之「Heap Viewer, Memory Monitor, Allocation Tracker」Memory Profilers
Memory Profilers
In this document
You should also read
1.简介
Heap Viewer, Memory Monitor, and Allocation Tracker are complementary tools that visualize the memory your app uses.
- Use the Memory Monitor Tool to find out whether undesirable garbage collection (GC) event patterns might be causing your performance problems.
Memory Monitor Tool 可分析出哪里有内存问题。
- Run Heap Viewer to identify object types that get or stay allocated unexpectedely or unecessarily.
Heap Viewer 标识出哪个对象是不必要的分配。
- Use Allocation Tracker to identify where in your code the problem might be.
Allocation Tracker 定位问题代码
2.Memory Monitor
- Shows available and used memory as they both change over time for your app in a graph, with dips indicating Garbage Collection (GC) events.
- Provides a quick way to test whether app slowness might be related to excessive GC events.
可测试是否由于过多的GC导致应用变慢。
- Provides a quick way to see whether app crashes might be related to running out of memory.
检查是否由于内存不足导致应用崩溃。
- Runs live on your application and updates about once a second.
- Helps quickly identify the potential of memory leaks.
标识潜在的内存泄漏。
- Helps identify GC patterns for your application and determine whether they are healthy and what you expect.
标识GC运行是否健康。
- Is easy to use, and it is easy to interpret what you see.
- However, Memory Monitor does not tell you which objects are the cause of your problems, or where in your code it might be.
它的缺点是并不能指出是哪个对象有问题,哪句代码有问题。
Figure 1. Memory Monitor.
3.Heap Viewer
- Shows snapshots of a number of objects allocated by type.
- Samples data every time a garbage collection event occurs naturally or triggered by you.
采集每次自动或手动GC的对象。
- Helps identify which object types might be involved in memory leaks.
标识出哪些对象可能与内存泄漏有关。
- However, you have to look for changes over time yourself by tracking what's happening in the graph.

Figure 2. Heap Viewer.
4.Allocation Tracker
- Shows when and where your code allocates object types, their size, allocating thread, and stack traces.
记录内存分配信息。
- Helps recognize memory churn through recurring allocation/deallocation patterns.
识别重复无效的内存分配。
- Can be used in combination with Heap Viewer to track down memory leaks. For example, if you see a bitmap object resident on the heap, you can find its allocation location with Allocation Tracker.
帮助Heap Viewer, Memory Monitor 分析内存泄漏。
- However, it takes time and experience to learn to interpret the output from this tool.

Figure 3. Allocation Tracker.
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
· 【杂谈】分布式事务——高大上的无用知识?