美文网首页
android关闭软键盘

android关闭软键盘

作者: 梦沉薇露 | 来源:发表于2016-06-19 17:35 被阅读0次
  
private void hintKeyboard() {  
 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);              
 if(imm.isActive()&&getCurrentFocus()!=null){  
    if (getCurrentFocus().getWindowToken()!=null) {  
    imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);  
    }               
 }  
}  

相关文章

网友评论

      本文标题:android关闭软键盘

      本文链接:https://www.haomeiwen.com/subject/ezvbdttx.html