안드로이드 Title 영역 높이 구하기
private int getTitleBarHeight() { Rect CheckRect= new Rect(); Window window= getWindow(); window.getDecorView().getWindowVisibleDisplayFrame(CheckRect); int StatusBarHeight= CheckRect.top; int contentTop= window.findViewById(Window.ID_ANDROID_CONTENT).getTop();
return contentTop; } |
구글링으로 알게 된 정보.
까먹지 않게 적어놓음.
Tip) height 정보는 화면 그려지고 난 다음에 계산 가능함.
'[미네르바's IT] > [미네르바's 안드로이드]' 카테고리의 다른 글
[안드로이드]파일 속성, 읽기, 쓰기, 생성, 복사하기 (0) | 2015.03.18 |
---|---|
[안드로이드]오디오 관련 팁 (0) | 2015.03.18 |
[안드로이드]Bitmap 이미지에 모자이크 처리 (0) | 2015.01.06 |
[안드로이드]안드로이드 image 효과주기 (0) | 2015.01.06 |
[안드로이드]Listview 폰트, 색상 바꾸기 (0) | 2014.12.29 |