posted by 네코냥이 2014. 11. 27. 15:57

private void particle_HideKeyboard() {

if(getCurrentFocus()!=null) {

        InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);

        inputMethodManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);

    }

}

'JAVA > Android' 카테고리의 다른 글

안드로이드 AIDL  (0) 2015.01.13
[Android] 전화걸기  (0) 2014.11.28
Adding View to RemoteViews in Android  (0) 2014.11.18
Adding the AppWidgetProviderInfo Metadata  (0) 2014.11.18
하나에 App에 다수의 App Widget  (0) 2014.11.18