Mobile/Android

[Android]사용 가능 메모리 확인

out of coding 2015. 9. 7. 17:33

안드로이드 사용 가능 메모리 확인

폰마다 메모리가 다르므로, 우리는 이렇게 알아본다.

하지만 버티지 못할 앱을 만들어 달라는게 문제다.


Log.d("TAG","TOTAL MEMORY : "+(Runtime.getRuntime().totalMemory() / (1024 * 1024)) + "MB");

Log.d("TAG","MAX MEMORY : "+(Runtime.getRuntime().maxMemory() / (1024 * 1024)) + "MB");

Log.d("TAG","FREE MEMORY : "+(Runtime.getRuntime().freeMemory() / (1024 * 1024)) + "MB");

Log.d("TAG","ALLOCATION MEMORY : "+((Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / (1024 * 1024)) + "MB");