1. 程式人生 > >android-func-隱藏軟鍵盤

android-func-隱藏軟鍵盤

/**
 * 隱藏軟鍵盤
 */
private void hideInputWindow() {
    ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE))
            .hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
                    InputMethodManager.HIDE_NOT_ALWAYS);
}