vertically I have 2 view, one is button and another is horizontal Recycler view. when I focus recycler view 1st item and then long press D pad right, then focus is going to the above button instead of next item inside Recycler view. I want Recycler view should not loose focus on long press.

1

There are 1 best solutions below

0
Samy Benmeddour On

You should use HorizontalGridView from leanback libraries

dependencies {
   val leanback_version = "1.2.0-alpha02"
   implementation("androidx.leanback:leanback:$leanback_version")
   implementation("androidx.leanback:leanback-grid:1.0.0-alpha03")
}

Leanback's BaseGridView is suited for this kind of usecase, for fast scrolling and better focus management. Touch inputs won't work anymore