由于键盘,RecyclerAdapter未显示

时间:2017-06-09 03:01:02

标签: java android android-recyclerview

我正在使用不同的搜索查询结果更改recyclerview适配器的数据集。我也可以填充数据,但填充的数据只显示键盘是否关闭。

This query("a") is valid but the result is shown only after I close the keyboard enter image description here

1 个答案:

答案 0 :(得分:0)

为什么不在填充数据后立即移除键盘。

try {
    InputMethodManager imm = (InputMethodManager) 
    getSystemService(INPUT_METHOD_SERVICE);               
    imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);
} catch (Exception e) {
}