Bryan Herbst
02/02/2022, 9:45 PMButton:invisible
, which I strongly suspect is the core reason this isn’t working. Digging into TalkBack source, this should only happen when AccessibilityNodeInfo.isVisibleToUser
is false.
• I set some breakpoints in AndroidComposeViewAccessibilityDelegateCompat
, and as best as I can tell the node info has isVisibleToUser
correctly set to true, and I do see the correct role showing up here for the buttons
What are some things that could cause this? I’ve tried replacing my design systems’ buttons with Material buttons, I’ve tried moving the composables out of Fragments and into the Activity, I’ve tried removing all other content in case something else on the screen was confusing TalkBack, all with no success.
I’d love to file a bug, but since I can’t reproduce it outside my application I don’t have much more to provide.Arjun Achatz
02/03/2022, 1:36 AMBryan Herbst
02/03/2022, 2:23 PM