Rect rectgle= new Rect();
Window window= getWindow(); window.getDecorView().getWindowVisibleDisplayFrame(rectgle);
int StatusBarHeight= rectgle.top;
int contentViewTop= window.findViewById(Window.ID_ANDROID_CONTENT).getTop();
int TitleBarHeight= contentViewTop - StatusBarHeight;
Log.i("Size :: ", "StatusBar Height= " + StatusBarHeight + " , TitleBar Height = " + TitleBarHeight);
onCreate가 끝난 후에, 사이즈를 구할 수 있다.
원래 25dip 인데, 해상도에 따라 다른것,
R.dimen.length ==> 25dip
height = getResources().getDimensionPixelSize(R.dimen.length);
이렇게도 구할수 있다.
일반적으로 다음과 같다.
240x320 - 20px, 320x480 - 25px, 480x800+ - 38px
'Programming > android' 카테고리의 다른 글
안드로이드 더블 클릭 (0) | 2011.01.12 |
---|---|
안드로이드 키보드 옵션 (3) | 2011.01.12 |
안드로이드 기본 캘린더 접근하기 (0) | 2011.01.04 |
[android] parseSdkContent 오류. (0) | 2010.12.17 |
Intent로 웹브라우저 열기 (0) | 2010.09.03 |