Created
November 8, 2011 12:43
-
-
Save ivasilov/1347658 to your computer and use it in GitHub Desktop.
Code for logging native heap usage on Android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void logHeap(Class clazz) { | |
Double allocated = new Double(Debug.getNativeHeapAllocatedSize())/new Double((1048576)); | |
Double available = new Double(Debug.getNativeHeapSize())/1048576.0; | |
Double free = new Double(Debug.getNativeHeapFreeSize())/1048576.0; | |
DecimalFormat df = new DecimalFormat(); | |
df.setMaximumFractionDigits(2); | |
df.setMinimumFractionDigits(2); | |
String APP = "Bitmap"; | |
Log.d(APP, "debug. ================================="); | |
Log.d(APP, "debug.heap native: allocated " + df.format(allocated) + "MB of " + df.format(available) + "MB (" + df.format(free) + "MB free) in [" + clazz.getName().replaceAll("com.myapp.android.","") + "]"); | |
Log.d(APP, "debug.memory: allocated: " + df.format(new Double(Runtime.getRuntime().totalMemory()/1048576)) + "MB of " + df.format(new Double(Runtime.getRuntime().maxMemory()/1048576))+ "MB (" + df.format(new Double(Runtime.getRuntime().freeMemory()/1048576)) +"MB free)"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment