DialogFragment中输入法的自动弹出和消失

自动弹出输入法

自动关闭输入法

终极解决方案-亲测有效 在 初始化view之后把下面代码copy进你的程序中即可.

MainApplication.getInstance().runOnMainThread({
            val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
            imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS)
        },200)
复制代码

其他测试

    //弹出时有效
    val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
    imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_NOT_ALWAYS)
    //关闭时有效
    val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
    imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS)
复制代码

转载于:https://juejin.im/post/5b603f3cf265da0f7b2f7d99

你可能感兴趣的:(DialogFragment中输入法的自动弹出和消失)