Developer/Android

[Keyboard]키보드 강제로 열기 강제로 닫기

블로blow 2010. 12. 15. 11:42
728x90

//아무대서나 실행.

InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);


//mgr.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT); // 보여줄때

mgr.hideSoftInputFromWindow(search_key.getWindowToken(), 0);          // 숨길때

728x90