You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[x ] I have verified the issue exists on the latest version
[ x] I am able to reproduce it
Version used:
1.13.0
Android version:
9
The announcement can't be read via TalkBack. Even worse: it can't be closed via TalkBack too! (it can, but only with the back button and since there is no indication what's going on, a blind person has no idea they should do this). This means that this library basically renders the app unusable for blind people.
The easiest fix would be to simply not show anything when touch navigation is enabled:
fun Context.isTouchExplorationEnabled(): Boolean {
// can be null during unit tests
val am = getSystemService(ACCESSIBILITY_SERVICE) as AccessibilityManager?
return am?.isTouchExplorationEnabled ?: false
}
Actually making it work would be a very nice option. With it, you'd have to set the contentDescription to View and allow closing it by clicking on it when touch exploration is enabled.
The text was updated successfully, but these errors were encountered:
it would be amazing if the content of the feature can be read from talkback, I tried right now and it's a frustrating experience, imagine from blind people.
Are there any updates on this issue? I would like to add that the missing content description also generates a warning in Google's pre-launch report that I'm not able to solve.
Version used:
1.13.0
Android version:
9
The announcement can't be read via TalkBack. Even worse: it can't be closed via TalkBack too! (it can, but only with the back button and since there is no indication what's going on, a blind person has no idea they should do this). This means that this library basically renders the app unusable for blind people.
The easiest fix would be to simply not show anything when touch navigation is enabled:
Actually making it work would be a very nice option. With it, you'd have to set the contentDescription to View and allow closing it by clicking on it when touch exploration is enabled.
The text was updated successfully, but these errors were encountered: