TalkBack辅助功能StaggeredGridLayoutManager的焦点顺序错误

时间:2019-01-29 14:25:07

标签: android android-layout accessibility talkback staggeredgridlayoutmanager

因此,我正在尝试使用“话语提示”功能来访问我的应用。 我正在尝试使用布局管理器StaggeredGridLayoutManager(Staggered GridView)在RecyclerView中查看22个项目,我希望焦点会像项目的位置一样按顺序排列。

预期示例-

 | 1 | 2 |
 | 3 | 4 |
 | 5 | 6 |
 | 7 | 8 |

...

但实际订单是

1,2,3,4,6,7,8,9,11,10,12,19,20,21,22 https://github.com/YoniBagi/StaggeredGridForAccessibility/blob/master/accessibility.gif

现在这里有两个问题:

  1. 它不按照位置顺序进行。
  2. 由于某些原因,在第12项时,它跳到第19项,并跳过介于两者之间的内容。

任何解决方案或想法都将不胜感激。

代码: https://github.com/YoniBagi/StaggeredGridForAccessibility/tree/master

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,并在《媒介》中写了一篇文章

link to solution

祝你好运!