I am struggling for a solution to find the memory used by particular process in android.
Using actvityManager.getRunningAppProcesses()
I can able to get the consolidated list of all process's memory usage.
But i need to implement a scenario where I should pass the processID
and get the memory usage of particular process? Is this scenario possible in Android?
Thanks in Advance!