让android的输入键盘消失的方法

来源:互联网 发布:淘宝助理有mac版吗 编辑:程序博客网 时间:2024/04/28 01:57

在事件中加入此代码:

((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE))
    .hideSoftInputFromWindow(MainActivity.this.getCurrentFocus()
      .getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

原创粉丝点击