old/sms_mms
소프트키보드 설정
jazzlife
2010. 3. 30. 18:03
//보이기
InputMethodManager inputMethodManager =
(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);
## 방법은 많은데 이상하게도 제대로 되는 건 이것 하나 뿐이다.
//감추기
InputMethodManager inputMethodManager =
(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(mTextEditor.getWindowToken(), 0);