1. 程式人生 > >android的隱藏軟鍵盤功能

android的隱藏軟鍵盤功能

1、今天看到自己原來寫的程式碼有隱藏軟鍵盤功能,今天寫一下就當記錄了。

View showview = getWindow().peekDecorView();
if (showview != null) {
    InputMethodManager inputmanger = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    inputmanger.hideSoftInputFromWindow(showview.getWindowToken(), 0);
}