Android Recyclerview Talkback issue

懵懂的女人 提交于 2019-12-23 09:05:18

问题


I have an Android Recyclerview which has some more rows of item.

In the sense Recyclerview comprises of
Row 1 ->> TextView , below that one more textview

Row 2 ->> TextView , below that one more textview

Issue is that, whenever I turn on the Talkback, it reads out the entire Recyclerview in one go, which is not expected, it should read one item at a time depending on the focussed item.

Expected behavior is - Read component on Focus when d-pad is moved onto it.

Any help??


回答1:


It would appear that at some point in the construction process your Recycler View is marked as importantForAccessibility. When a container view is marked as important for accessibility it gathers all of the information within that container and announces it as the content description.

This should remedy the situation.

android:importantForAccessibility="no" //Or "auto"

If at no point in code did you set this otherwise, this would appear to be a bug with your flavor of Android. This is certainly not desirable default behavior.

Edit:

Changed "no" to "auto". Really we just want it to not be "yes", which is the value that creates the poor behavior. Auto behaves better with Switch Control on modern devices.

Been investigating this on and off for a bit, I don't think there's a Android OS Version agnostic solution here. Android APIs have changed their definition of Focusability vs Accessibility Focusability too many times across too many versions.




回答2:


Contrary to ChrisCM's answer, you should NOT set...

android:importantForAccessibility="no"

... on your RecyclerView. This will disable all native accessibility functionality related to your list, including the ACTION_SCROLL_FORWARD / ACTION_SCROLL_BACKWARD actions (Accessibility Source), and the ability to append "In List" / "Out of List" context to accessibility announcements.

Instead, you should set...

android:focusable="true"
android:focusableInTouchMode="true"

...on the root layout of your List items, which will enable them to gain focus individually when the accessibility user navigates to them.



来源:https://stackoverflow.com/questions/36493514/android-recyclerview-talkback-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!