다메다메의 기술블로그

StatusBar의 Height 구하기 본문

Android

StatusBar의 Height 구하기

다메 2015. 1. 4. 21:56

전체 화면을 사용하는 Activity의 경우 StatusBar의 Height를 구해야 할 경우가 있다.


그럴 경우 다음과 같은 코드로 StatusBar의 Height를 구하면 된다.


private int getStatusBarHeight() {

int result = 0;

int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");

if ( resourceId > 0 ) {

result = getResources().getDimensionPixelSize(resourceId);

}

return result;

}


Comments