我在用户输入edittext字段后隐藏了android键盘。当我隐藏键盘时,整个视图滚动到底部。如何避免这种滚动?
这就是我隐藏键盘的原因:
InputMethodManager imm = (InputMethodManager)getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(stepNameEditText.getWindowToken(), 0);
imm.hideSoftInputFromWindow(stepDescriptionEditText.getWindowToken(), 0);
答案 0 :(得分:0)
您只需拨打hideSoftInputFromWindow()
一次,然后尝试使用InputMethodManager.HIDE_NOT_ALWAYS
代替“0”作为标记。
编辑:
尝试将android:windowSoftInputMode="adjustPan"
添加到您的清单。