Android/App개발
softKeyboard 띄위기
삼스
2009. 8. 28. 14:49
// InputMethodService의 참조를 얻음.
InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
// SoftInput keyboard를 show함.
inputManager.showSoftInput(this.getCurrentFocus(),InputMethodManager.SHOW_IMPLICIT);
inputManager.showSoftInput(this.getCurrentFocus(),InputMethodManager.SHOW_IMPLICIT);