当我在绝对位置添加editText运行时时,键盘将使用
(imm.showSoftInput(edittext, InputMethodManager.SHOW_IMPLICIT))
键盘打开后,我叫
(holder.scroll.smoothScrollTo(0, edittext.getbottom()))
但是当我给editext输入时,滚动会上升到顶部。 为了避免这个问题,我在代码行中添加了以下内容,请检查
relative.requestChildFocus(edittext, edittext)
添加此行后的行为就像现在滚动不会上升,但editText光标在editText中不可见。
请帮助解决此问题。 谢谢。