Smart Device/Android

문자 입력기 IME 보이기 / 감추기

언덕너머에 2014. 5. 8. 17:12
- 보이기
EdidText editor = (EditText)findViewById(R.id.myEdit);
InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//only will trigger it if no physical keyboard is open
mgr.showSoftInput(editor, InputMethodManager.SHOW_IMPLICIT);

- 감추기
EdidText editor = (EditText)findViewById(R.id.myEdit);
InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//only will trigger it if no physical keyboard is open
mgr.hideSoftInputFromWindow(editor.getWindowToken(), 0);