How to shift accessibility focus on RecyclerView's first element on some action?
RecyclerView's getChildAt()
method worked for me.
recyclerView.getChildAt(0).requestFocus()
recyclerView.getChildAt(0).sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED)
Request Focus with Specific ViewId
and gets the first element of that node.