//보이기
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);
'old > sms_mms' 카테고리의 다른 글
외부 app의 DB와 동기화를 위해서 감시하는 코드 (0) | 2010.04.23 |
---|---|
Vcard (0) | 2010.03.09 |