码迷,mamicode.com
首页 > 其他好文 > 详细

隐藏键盘

时间:2016-12-07 13:56:01      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:隐藏   strong   nbsp   sof   bool   软键盘   focus   over   ota   

首先获得软键盘Manager
  1. InputMethodManager manager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  
  2.   
  3.   
  4.   
  5.   
  6. @Override  
  7.  public boolean onTouchEvent(MotionEvent event) {  
  8.   // TODO Auto-generated method stub  
  9.   if(event.getAction() == MotionEvent.ACTION_DOWN){  
  10.      if(getCurrentFocus()!=null && getCurrentFocus().getWindowToken()!=null){  
  11.        manager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);  
  12.      }  
  13.   }  
  14.   return super.onTouchEvent(event);  
  15.  }

隐藏键盘

标签:隐藏   strong   nbsp   sof   bool   软键盘   focus   over   ota   

原文地址:http://www.cnblogs.com/hexihexi/p/6140619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!