반응형
TOTAL MEMORY : (Runtime.getRuntime().totalMemory() / (1024 * 1024)) + "MB")
MAX MEMORY : (Runtime.getRuntime().maxMemory() / (1024 * 1024)) + "MB")
FREE MEMORY : (Runtime.getRuntime().freeMemory() / (1024 * 1024)) + "MB");
ALLOCATION MEMORY :
((Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / (1024 * 1024)) + "MB")
실시간으로 체크할려면 handler러나 thread를 이용해서 체크하면 됨.
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
안드로이드 기본 이미지 파일이 있는 곳. (0) | 2013.12.12 |
---|---|
버튼 클릭시 글자색깔 변환하기 (0) | 2013.12.12 |
어플리케이션 버전 가져오기 (0) | 2013.12.11 |
TableLayout 속성 (0) | 2013.12.11 |
RelaytiveLayout 위치 속성 (0) | 2013.12.11 |