Adding proper keyboard support to RecyclerView
问题 In one of my previous questions, I asked (and answered by myself following this blog post) how to properly handle key input on a RecyclerView . Now I realized that if I keep an arrow key pressed, let's say down key, the scrolling downwards stops and the RecyclerView loses its focus, probably because the scrolling is faster than the generation of all the children View s. Is there any workaround or better practice to properly handle hardware keyboard inputs on a RecyclerView ? Update: I