Android TV RecyclerView focus interaction

  1. For a regular RecyclerView,

    • I had to specify: android:descendantFocusability="beforeDescendants"

    • And also android:nextFocusDown="@+id/recyclerviewId" is set to send focus to RV itself.

  2. The only solution I see is a key listener to select item to position currentPosition + spancount.

Leave a Comment