Android 隐藏关闭软键盘

直接复制代码就可以用

 

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0);
}
posted @ 2017-01-05 15:53  TeddyYan  阅读(364)  评论(0编辑  收藏  举报