Questions tagged [talkback]

TalkBack is an Android Accessibility Service that helps blind and vision-impaired users interact with their devices more easily.

TalkBack is, according to its website, an Android Accessibility Service that helps blind and vision-impaired users interact with their devices more easily.

This application add spoken, audible, and vibration feedback to your device. It is a system application that was pre-installed on most device and is updated when the accessibility service is improved.

519 questions
4
votes
0 answers

How to change initial Talkback focus when code Android View in Jetpack Compose

Basically, I am looking for a equivalent in Jetpack Compose of the sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED) used in xml. Currently, my page looks in this structure: Surface { TopToolbarBar() { Row() { …
Max Xu
  • 51
  • 2
4
votes
1 answer

Send accessibility events not linked to any composable in Jetpack compose

Trying to announce accessibility when showing a pop up/Dialog. After hours of searching found the following code but this does not work for jetpack compose. Looking for something similar to the code given below but in Jetpack Compose if…
4
votes
0 answers

How to get TalkBack to read into nested RecyclerView's contents

I have a RecyclerView, whose cells each contain a complex layout of various Elements such as images, text fields, etc. One of the elements contained within the main RecyclerView's cells is another RecyclerView (it's a grid list of "chips"). When I…
Brandon M
  • 349
  • 2
  • 20
4
votes
0 answers

Is it possible for the Android WebView to announce only it's content in TalkBack?

When using TalkBack and iterating over the screen and the next element is a WebView, the first thing what TalkBack announces is the WebView itself, which is not really informative. After I swipe again, the TalkBack starts to iterate over the content…
Tamás Kozmér
  • 486
  • 5
  • 16
4
votes
2 answers

React-Native Talkback reads component accessibilityRole in wrong language

I have a React-Native application where we want to support Talkback in Finnish and English. When using Google's Text to Speech module in Finnish everything else works fine, except "button" is read as "button" instead of Finnish equivalent "Painike".…
Waltari
  • 1,052
  • 1
  • 30
  • 64
4
votes
0 answers

Wrong Accessibility Traversal order in Nested Recyclerview inside NestedScrollView

For accessibility I'm trying to traverse through a (nested) RecyclerView, using Talkback. However, instead of scrolling all the way to the bottom of the screen (vertically), the swipe of the horizontal RecyclerView is triggered. As a result, it is…
476rick
  • 2,764
  • 4
  • 29
  • 49
4
votes
2 answers

When should we use `accessibilityRole` in React Native?

Is this correct? I'm afraid it will read the word 'switch' twice to the user.
prisalcalde
  • 43
  • 1
  • 3
4
votes
1 answer

How to switch off explore by touch for some accessibility service

How i can switch off explore by touch for some accessibility service,for example for google talkback,if i know package of this service. I try to change preferences of this service,because i know,that in talkback use PreferenceFragment key,which…
4
votes
2 answers

Android change accessibility order with setAccessibilityTraversalAfter() not working

What I want is to change the accessibility order, the order in which the screen reader, the TalkBack in that Android case, read the elements, after pressing a button. This is what I tried by far, but it doesn't work, the order is still the initial…
Poli97
  • 305
  • 4
  • 18
4
votes
1 answer

Is there any way to get the latest TalkBack source code?

I would like to customize google TalkBack for some reasons. The latest open source code version in GitHub is 6.1 but in devices, we are getting 7.3.0.239841594. Is there any way to get the latest source code of version 7.3.0.239841594.
4
votes
1 answer

Is there any way to announce drawable of text field in android talkback

Using a custom EditText that have drawable right
Azeela
  • 213
  • 3
  • 8
4
votes
3 answers

Pronounce custom statement instead of checked/unchecked

I am looking to see if it's possible to change the checked/unchecked statement made during TalkBack for radio buttons in Android. When the radio button is currently in focus, TalkBack will say whether it is checked or unchecked. I wanted to see if…
maedre45
  • 41
  • 2
4
votes
2 answers

How to prevent Spinner announcement when initialized

Background The fragment creates it's views and then starts a network operation. When the network operation is completed, various types of subviews are created and added to the fragment's view, based on the results of the network…
David Berry
  • 40,941
  • 12
  • 84
  • 95
4
votes
2 answers

Android Talkback Announcement Localization

I have a duo lingo (English + Spanish) android application. I am implementing accessibility in my application, and I want the Talkback to read the Spanish words in Spanish and the English words in English. The English and Spanish words are going to…
4
votes
1 answer

Android Accessibility: Reading custom text on activity launch

I want to read some instruction via accessibility as soon as My activity is launched. How can I do this? (I don't want to read out the activity label)
Amit
  • 225
  • 2
  • 14