EditView手动设置弹出键盘和收起键盘

1、弹出键盘

    fun showKeyboard() {
        edit.setFocusable(true);
        edit.setFocusableInTouchMode(true)
        edit.requestFocus();
        var imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        imm.showSoftInput(edit, 0)
    }

2、收起键盘

    fun hideKeyboard() {
        dit.setFocusable(false)
        edit.setFocusableInTouchMode(false)
        var imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        imm.hideSoftInputFromWindow(edit.windowToken, 0)
    }

 

posted @ 2019-08-09 09:48  你好and程序员  阅读(477)  评论(0编辑  收藏  举报