키보드 보이게 하기
InputMethodManager imm = (InputMethodManager)
imm.showSoftInput(editText, 0);
키보드 숨기기
InputMethodManager imm = (InputMethodManager)
imm.hideSoftInputFromWindow(
Activity에서 Edit Fild 를 선택했을때 키보드 나타나게 하는 방법
AndroidManifest에서 설정
<activity android:configChanges="
또는
<activity android:windowSoftInputMode="stateHidden"> 를 사용
'안드로이드' 카테고리의 다른 글
SMS 한글 깨지는 문제 (0) | 2011.01.28 |
---|---|
SMS 보내기 (0) | 2011.01.28 |
Eclipse에서 android Full Source 연결해서 개발환경 만들기 (0) | 2011.01.28 |
구글 Power Manager 정리 PPT 자료 (0) | 2011.01.27 |
adb shell 처리 방법 (0) | 2011.01.27 |