JAVA/Android
[안드로이드] 키보드 숨기기.
네코냥이
2014. 11. 27. 15:57
private void particle_HideKeyboard() {
if(getCurrentFocus()!=null) {
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
}
}