我正在使用不同的搜索查询结果更改recyclerview适配器的数据集。我也可以填充数据,但填充的数据只显示键盘是否关闭。
This query("a") is valid but the result is shown only after I close the keyboard
答案 0 :(得分:0)
为什么不在填充数据后立即移除键盘。
try {
InputMethodManager imm = (InputMethodManager)
getSystemService(INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
} catch (Exception e) {
}