// XML 에 키보드를 추가하면 Dialog 뒤의 Activity 의 화면만 줄어든다. // Dialog 의 window 의 값을 따로 설정 // Dialog 의 onCreate 에서 또는 Dialog dialog.getWindow() 해서 사용한다. Window win = getWindow(); WindowManager.LayoutParams winLp = win.getAttributes(); winLp.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE; win.setAttributes(winLp);
'Programs > Android' 카테고리의 다른 글
onConfigurationChanged() 호출이 안되는 문제 (0) | 2013.06.03 |
---|---|
영문 키패드 나오게 하는 방법 (0) | 2013.03.19 |
Content Observer (0) | 2013.02.27 |
안드로이드 멀티 해상도 지원 (2) | 2012.12.04 |
zxing 세로 모드 스캐너 (1) | 2012.11.20 |