- InputMethodManager manager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
-
-
-
-
- @Override
- public boolean onTouchEvent(MotionEvent event) {
-
- if(event.getAction() == MotionEvent.ACTION_DOWN){
- if(getCurrentFocus()!=null && getCurrentFocus().getWindowToken()!=null){
- manager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
- }
- }
- return super.onTouchEvent(event);
- }
隐藏键盘
原文:http://www.cnblogs.com/hexihexi/p/6140619.html