gpt4 book ai didi

android - Android OS 如何计算应用程序的内存使用情况?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:16:12 24 4
gpt4 key购买 nike

我的意思是显示在“设置”>“应用”>“运行”上的应用程序的内存使用情况。为什么这个数字与 DDMS 上应用程序的堆大小相差甚远?例如,在图片中操作系统说我的应用程序使用 151 MB(包括 Google PLay 服务)但 DDMS 说只使用了 40MB 的内存。

第二个问题是:Google Analytics Service 使用了 27MB,这仅适用于我的应用程序还是所有使用 Google Analytics Service 的应用程序?如果它仅适用于我的应用程序,那将是一笔昂贵的费用!

enter image description here

最佳答案

References from Android Developer Website

进程统计:了解您的应用程序如何使用 RAM --> http://android-developers.blogspot.com/2014/01/process-stats-understanding-how-your.html

管理应用的内存 --> https://developer.android.com/training/articles/memory.html

调查您的 RAM 使用情况 --> https://developer.android.com/tools/debugging/debugging-memory.html


Android 4.4 KitKat 引入了名为 procstats 的新系统服务,可帮助您更好地了解您的应用如何使用设备上的 RAM 资源。

您可以使用 adb shell 命令访问 procstats 数据,但为方便起见,还有一个新的 Process Stats 开发人员工具,它为相同数据提供图形前端。您可以在 Settings > Developer options > Process Stats 中找到 Process Stats。

Android Process

查看系统范围的内存使用和后台进程

当您打开 Process Stats 时,您会看到系统范围内存状况的摘要以及有关进程如何随时间使用内存的详细信息。右图举例说明了您可能会在典型设备上看到的内容。

分析特定进程的内存

Android Memory

Android Memory

过去 3.5 小时内时钟和键盘进程的进程统计内存详细信息。

这两个过程的细节表明:

  • Clock 一直在运行的原因是因为它正在用作设备空闲时的当前屏幕保护程序。
  • 尽管时钟进程的运行时间不到键盘进程的一半,但它的 ram 使用量要大得多(几乎是 3 倍),这就是它的整体重量更大的原因。

从本质上讲,procstats 提供了一个“内存使用”量表,它与存储使用量或数据使用量量表非常相似,显示在后台运行的应用程序使用了多少 RAM。但是,与存储或数据不同,内存使用更难量化和测量,procstats 使用一些技巧来做到这一点。为了说明测量内存使用的复杂性,请考虑一个相关主题:任务管理器。

内存快照

Total PSS by OOM adjustment:
31841 kB: Native
13173 kB: zygote (pid 23001)
4372 kB: surfaceflinger (pid 23000)
3721 kB: mediaserver (pid 126)
3317 kB: glgps (pid 22993)
1656 kB: drmserver (pid 125)
995 kB: wpa_supplicant (pid 23148)
786 kB: netd (pid 121)
518 kB: sdcard (pid 132)
475 kB: vold (pid 119)
458 kB: keystore (pid 128)
448 kB: /init (pid 1)
412 kB: adbd (pid 134)
254 kB: ueventd (pid 108)
238 kB: dhcpcd (pid 10617)
229 kB: tf_daemon (pid 130)
200 kB: installd (pid 127)
185 kB: dumpsys (pid 14207)
144 kB: healthd (pid 117)
139 kB: debuggerd (pid 122)
121 kB: servicemanager (pid 118)
48217 kB: System
48217 kB: system (pid 23064)
49095 kB: Persistent
34012 kB: com.android.systemui (pid 23163 / activities)
7719 kB: com.android.phone (pid 23357)
4676 kB: com.android.nfc (pid 23371)
2688 kB: com.nuance.xt9.input (pid 23344)
24945 kB: Foreground
24945 kB: com.android.settings (pid 24811 / activities)
17136 kB: Visible
14026 kB: com.google.process.location (pid 23472)
3110 kB: com.android.defcontainer (pid 13976)
6911 kB: Perceptible
6911 kB: com.google.android.inputmethod.latin (pid 23298)
14277 kB: A Services
14277 kB: com.google.process.gapps (pid 23513)
26422 kB: Home
26422 kB: com.android.launcher (pid 23395 / activities)
21798 kB: B Services
16242 kB: com.google.android.apps.currents (pid 23767)
5556 kB: android.process.media (pid 7738)
145869 kB: Cached
41588 kB: com.google.android.apps.plus (pid 24689)
21417 kB: com.google.android.deskclock (pid 23966 / activities)
14463 kB: com.google.android.apps.docs (pid 8644)
14303 kB: com.google.android.gm (pid 9115)
11014 kB: com.google.android.music:main (pid 7716)
10688 kB: com.google.android.apps.magazines (pid 13892)
10240 kB: com.google.android.gms (pid 23338)
9882 kB: com.google.android.youtube (pid 5131)
8807 kB: com.google.android.apps.walletnfcrel (pid 8937)
3467 kB: com.google.android.setupwizard (pid 8922)

Total RAM: 998096 kB
Free RAM: 574945 kB (145869 cached pss + 393200 cached + 35876 free)
Used RAM: 392334 kB (240642 used pss + 107196 buffers + 3856 shmem + 40640 slab)
Lost RAM: 30817 kB
Tuning: 64 (large 384), oom 122880 kB, restore limit 40960 kB (high-end-gfx)

关于android - Android OS 如何计算应用程序的内存使用情况?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24954882/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com