Developer
Developer

Reputation: 1019

How to find out memory usage of the current running application in android?

I am working on memory usage for application. I have many applications running in my device.I am able to get the available memory using getMemoryInfo().

My problem is , i want each and every application memory consumption/usage.

e.x. I have four application running,
1) abc
2) def
3) ghi
4) klm

Now i want memory usage/consumption of each and every running above applications.

please help me out to find the individual application memory consumption and its allocation.

Thanks in advance.

Upvotes: 4

Views: 3190

Answers (1)

Shashank Kadne
Shashank Kadne

Reputation: 8101

This is a good article that talks about memory profiling tools that can help you analyze your application's memory usages.

Upvotes: 1

Related Questions