美文网首页
android 键盘无法弹起的解决

android 键盘无法弹起的解决

作者: couriravant | 来源:发表于2022-09-25 10:47 被阅读0次

键盘不弹起多发生在页面view刷新变化的时候,会导致焦点变化,等editText获取焦点后,可以稳定弹起键盘

  tvRight?.setOnClickListener {
     ...
          
            editText?.editView?.onFocusChangeListener = View.OnFocusChangeListener { v, hasFocus ->
                if (hasFocus) {
                    editText?.editView?.onFocusChangeListener = null
                    UIUtils.getInputMethodManager().showSoftInput(v, InputMethodManager.SHOW_IMPLICIT)
                }
            }
            editText?.editView?.requestFocus()
          
        }

tips: post的方式不稳定,有些情况失效

相关文章

网友评论

      本文标题:android 键盘无法弹起的解决

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