Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking at to find out all running process and their memory use.

I have successfully find. 1.TotalPSS. 2. TotalSharedDirty 3. TotalPrivateDirty.

Can anybody tell me how to find exact memory used from above things.

Example: app:Util TotalPrivateDirty:3308kb TotalSharedDirty:9964kb TotalPss:5854kb

What is exact memory used by above app?

Please help any help will be appreciated.

Please look at below code which successfully gives you running app list

   ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);

        MemoryInfo memoryInfo = new ActivityManager.MemoryInfo();
        activityManager.getMemoryInfo(memoryInfo);

        Log.i("Util", "-------------Memory----------------------------------");
        Log.i("Util", " memoryInfo.availMem " + memoryInfo.availMem + "\n");
        Log.i("Util", " memoryInfo.lowMemory " + memoryInfo.lowMemory + "\n");
        Log.i("Util", " memoryInfo.threshold " + memoryInfo.threshold + "\n");
        Log.i("Util", "------------------------------------------------------");

        List<RunningAppProcessInfo> runningAppProcesses = activityManager
                    .getRunningAppProcesses();

        Map<Integer, String> pidMap = new TreeMap<Integer, String>();
        for (RunningAppProcessInfo runningAppProcessInfo : runningAppProcesses) {
            pidMap.put(runningAppProcessInfo.pid,
                    runningAppProcessInfo.processName);
        }

        Collection<Integer> keys = pidMap.keySet();

        for (int key : keys) {
            int pids[] = new int[1];
            pids[0] = key;
            android.os.Debug.MemoryInfo[] memoryInfoArray = activityManager
                    .getProcessMemoryInfo(pids);
            for (android.os.Debug.MemoryInfo pidMemoryInfo : memoryInfoArray) {
                Log.i("Util","packagename"+ pidMap.get(pids[0]));
                Log.i("Util","id"+ pids[0] + "");
                Log.i("Util","TPD"+ pidMemoryInfo.getTotalPrivateDirty()+ "kb");
                Log.i("Util","TotalPss"+ pidMemoryInfo.getTotalPss() + "kb");
                Log.i("Util","TotalSharedD"+pidMemoryInfo.getTotalSharedDirty()+"kb");
                }
            }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.