6

How to check that how much memory(RAM) is getting consumed by any of currently running app on device?

Thanks.

BradleyDotNET
  • 60,462
  • 10
  • 96
  • 117
Varundroid
  • 9,135
  • 14
  • 63
  • 93

1 Answers1

10

Look at the ActivityManager.

getRunningAppProcesses will get you a list of PIDs, and then getProcessMemoryInfo will give you memory details about them.

See the following thread for an complete, in-depth answer: How do I discover memory usage of my application in Android?.

Community
  • 1
  • 1
Brian Clow
  • 156
  • 1
  • 4