美文网首页
点击空白区域隐藏键盘

点击空白区域隐藏键盘

作者: 小婷婷tt | 来源:发表于2019-05-27 16:27 被阅读0次

    /**

        * 点击空白区域隐藏键盘.

        */

        @Override

        public boolean onTouchEvent(MotionEvent event) {

            InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);

            if (event.getAction() == MotionEvent.ACTION_DOWN) {

                if (BaseActivity.this.getCurrentFocus() != null) {

                    if (BaseActivity.this.getCurrentFocus().getWindowToken() != null) {

                        imm.hideSoftInputFromWindow(BaseActivity.this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

                    }

                }

            }

            return super.onTouchEvent(event);

        }

    相关文章

      网友评论

          本文标题:点击空白区域隐藏键盘

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