Summary:
When using talkback with nested recyclerview using the swiping the scrolling seems to hop as in skip complete rows and sometimes not scroll all the way to the right. Keep in mind this only happens when both the width of the nested recyclerview is larger than the screen. I included a video of me just swiping to the right and you can see the issues. Weirdness like this is happening on my work project as well.
Video
https://drive.google.com/file/d/1fUT4F0CaD34lLVdELBoBK3EPZ4PeNmMy/view?usp=sharing
Keep in mind there is 7 in each row and sometimes it skips the 7th. Also sometimes it just skips to a completely new roll or scroll weird. On my work project I have seen it skip rows as well.
Details:
I recreated it on a simple example online of nested recyclerview. I simplified it as much as I could here https://github.com/DavidCorrado/NestedRecyclerview
I tried what other articles suggested which it seems to me everyone just eventually gave up
nestedScrollingEnabled
descendantFocusability="blocksDescendants"
focusableInTouchMode="true"
descendantFocusability="beforeDescendants"
Question:
Is this just broken or is there any work arounds for nested recyclerview?