美文网首页
android 点击空白处隐藏软键盘2018-12-05

android 点击空白处隐藏软键盘2018-12-05

作者: 阿狸清纯的容颜 | 来源:发表于2018-12-05 10:27 被阅读0次

    话不多说直接复制到你的baseAty就可以


    /**

    * 点击页面空白处时,让键盘消失

    *

    * @param event 事件

    * @return boolean

    */

    @Override

    public boolean onTouchEvent(MotionEvent event) {

    InputMethodManager mInputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

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

    if (getCurrentFocus() !=null && getCurrentFocus().getWindowToken() !=null) {

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

    mInputMethodManager.hideSoftInputFromWindow(

    getCurrentFocus().getWindowToken(),

                            InputMethodManager.HIDE_NOT_ALWAYS);

                }

    }

    }

    return super.onTouchEvent(event);

    }

    @Override

    public boolean dispatchTouchEvent(MotionEvent ev) {

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

    View v = getCurrentFocus();

            if (isShouldHideKeyboard(v, ev)) {

    hideKeyboard(v.getWindowToken());

            }

    }

    return super.dispatchTouchEvent(ev);

    }

    /**

    * 根据EditText所在坐标和用户点击的坐标相对比,来判断是否隐藏键盘,因为当用户点击EditText时则不能隐藏

    *

    * @param v    View

    * @param event 事件

    * @return boolean

    */

    private boolean isShouldHideKeyboard(View v, MotionEvent event) {

    if (v !=null && (vinstanceof EditText)) {

    int[] l = {0, 0};

            v.getLocationInWindow(l);

            int left = l[0],

                    top = l[1],

                    bottom = top + v.getHeight(),

                    right = left + v.getWidth();

            return !(event.getX() > left) || !(event.getX() < right)

    || !(event.getY() > top) || !(event.getY() < bottom);

        }

    // 如果焦点不是EditText则忽略,这个发生在视图刚绘制完,第一个焦点不在EditText上,和用户用轨迹球选择其他的焦点

        return false;

    }

    /**

    * 获取InputMethodManager,隐藏软键盘

    *

    * @param token1 Ibinder

    */

    private void hideKeyboard(IBinder token1) {

    if (token1 !=null) {

    InputMethodManager im = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

            im.hideSoftInputFromWindow(token1, InputMethodManager.HIDE_NOT_ALWAYS);

        }

    }

    相关文章

      网友评论

          本文标题:android 点击空白处隐藏软键盘2018-12-05

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