=================================
=================================
=================================
출처: http://maluchi.cafe24.com/xe/index.php?mid=MyAndroidTips&document_srl=26249
1. Hide 시키는 방법
1.
EditText edit = (EditText)
this
.findViewById(R.id.edtUrl);
2.
3.
InputMethodManager im = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
4.
im.hideSoftInputFromWindow(edit.getWindowToken(),
0
);
2. Show 시키는 방법
1.
EditText edit = (EditText)
this
.findViewById(R.id.edtUrl);
2.
3.
InputMethodManager im = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
4.
im.showSoftInputFromInputMethod(edit.getApplicationWindowToken(), InputMethodManager.SHOW_FORCED);
5.
6.
or
7.
8.
im.showSoftInput(edit,
0
);
//-----------------------------------------------------------------------------------
class Test.....
{
EditText _editChat = new EditText (this);
................// EditText 이것저것 설정
InputMethodManager _immKeyboard = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
getSystemService(Context.INPUT_METHOD_SERVICE);
// 키보드를 숨겨준다.
_immKeyboard.hideSoftInputFromWindow(_editChat.getWindowToken(), 0);
//키보드가 열려있는지 확인해 준다.
if(_immKeyboard.isAcceptingText())
{
// 확인
}
}
=================================
=================================
=================================
춮처 : http://www.androidpub.com/1104990
1. 키보드 감추기
=================================
=================================
=================================
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
안드로이드 키보드 엔터키 바꾸기 (0) | 2011.06.08 |
---|---|
안드로이드 로컬 html 불러오기 관련 (0) | 2011.06.08 |
안드로이드 스크롤이 맨 아래에 갔을 때 이벤트 주는 법 (0) | 2011.06.07 |
안드로이드 스크린 키보드 관련 (0) | 2011.06.03 |
안드로이드 상태바(StatusBar) 사이즈 구하기 (0) | 2011.06.01 |
댓글 영역