键盘不会被解雇,即使我试图解雇Android

时间:2016-10-26 15:53:43

标签: android

我有一个editText,当我点击取消时有两个按钮,我禁用编辑文本并隐藏键盘。

     case R.id.verify_cancel:

 hideMobileNoEditOption();
            showAndHideError(verify_layout, false);
            showAndHideError(mobile_error_tv, false);
            mobile_number_et.clearFocus();

这是hideMobileNoEditOption();

的代码
mobile_number_et.clearFocus();
        AppUtil.hideSoftKeyboard(this);
        mobile_number_et.setCursorVisible(false);
        mobile_number_et.setFocusable(false);
        mobile_number_et.setEnabled(false);
        mobile_number_et.setTextIsSelectable(false);
        mobile_number_et.setTextColor(ContextCompat.getColor(getBaseContext(), R.color.zero_title));

这是隐藏键盘的代码。

InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);

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

            inputMethodManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);

        }

但我的主板不会因为上帝知道的原因而被解雇,有人可以帮忙吗?提前致谢

1 个答案:

答案 0 :(得分:1)

试试这个,这段代码对我有用

     /**
     * For Hiding the keyboard
     */

    public void hideKeyboard() {
        View view = this.getCurrentFocus();
        if (view != null) {
            InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
        }
    }