首页 > 技术文章 > android 点击屏幕关闭 软键盘

shiningrise 2015-09-22 23:29 原文

//点击屏幕 关闭输入弹出框
 @Override
 public boolean onTouchEvent(MotionEvent event) {
  InputMethodManager im = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
  im.hideSoftInputFromWindow(getCurrentFocus().getApplicationWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
  return super.onTouchEvent(event);
 }

 

 

推荐阅读