다메다메의 기술블로그
StatusBar의 Height 구하기 본문
전체 화면을 사용하는 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;
}
'Android' 카테고리의 다른 글
adb로 apk파일 추출하기 (0) | 2015.03.23 |
---|---|
View의 위치, 사이즈(크기) 구하기 (1) | 2015.01.21 |
Eclipse 실행 시 Android SDK Content Loader 0%에서 멈춤 현상 (0) | 2014.12.30 |
libz.so.1 파일을 찾을수 없을때 (2) | 2014.12.29 |
우분투 64비트 운영체제에서 Android Studio의 adb가 실행되지 않을때 (0) | 2014.12.24 |
Comments