码迷,mamicode.com
首页 > 移动开发 > 详细

android 点击屏幕关闭 软键盘

时间:2015-09-23 01:04:38      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

//点击屏幕 关闭输入弹出框
 @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);
 }

 

 

android 点击屏幕关闭 软键盘

标签:

原文地址:http://www.cnblogs.com/shiningrise/p/4830900.html

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