Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Memory monitor in Android Studio reports different RAM usage than the device

When investigating RAM usage in an app I am working on, I have been using the Memory Monitor tool in Android Studio (can be accessed in Android Studio by going to Tools>Android>Memory Monitor). I have noticed the RAM usage of my app that is reported in Memory Monitor, is always far lower than when viewing the RAM usage from the device (can be accessed by going to Settings>Apps>Running). As you can see in the screenshots below, Memory Monitor is reporting about 18MB of RAM usage (23MB if you include free space), but the device is reporting 43MB.

Why the difference and also is one more accurate than the other?

Memory Monitor

device

like image 401
Dick Lucas Avatar asked Jan 24 '15 20:01

Dick Lucas


People also ask

How do I monitor RAM utilization?

Here's how: Press Ctrl + Shift + Esc to launch Task Manager. Or, right-click the Taskbar and select Task Manager. Select the Performance tab to see current RAM usage displayed in the Memory box, and total RAM capacity listed under Physical Memory.

How do I check my RAM usage on Android?

Open your Apps list and tap the ""Settings"" app. Select ""Device care"" or ""Device maintenance"" on the menu—the name varies by model. Now, tap ""Memory"" to view the total amount of RAM in your phone or tablet, as well as RAM usage per app.

Where is memory leak in Android profiler?

To use this feature, first capture a heap dump or import a heap dump file into Android Studio. To display the fragments and activities that may be leaking memory, select the Activity/Fragment Leaks checkbox in the heap dump pane of the Memory Profiler, as shown in figure 7.

What is a memory leak in Android?

A memory leak happens when memory is allocated but never freed. This means the GC is not able to take out the trash once we are done with the takeout. Android has a 16ms drawing window, and the GC normally takes less time to deal with memory.


1 Answers

I suspect that the memory monitor tool is talking to the dalvik virtual machine about heap allocations made by Java code, and the device manager is showing what the entire process is using for memory. So the first does not include overhead or memory used by the virtual machine itself (or its text and libraries), or any off-heap allocations (sometimes native code can allocate memory that isn't directly visible to the VM).

See https://developer.android.com/tools/debugging/debugging-memory.html#ViewingAllocations and try running the command:

adb shell dumpsys meminfo <package_name>

to get a more precise breakdown of the run-time memory usage of your application.

like image 107
P.T. Avatar answered Oct 21 '22 08:10

P.T.