Frage

I can not find an answer to what should be a very simple task. Can someone explain to me the best way to turn off accessibility (talkback) for an individual element in android?

I have a TextView that I programmatically set the contentDescription to nil, and it keeps talkback from saying the title, but when navigating through the view it still stops on that textview.. it just stays silent.

My goal is to have talkback completely ignore that the TextView exists.

Please help!

Thank you :)

War es hilfreich?

Lösung

In your XML file, set the importance to "no". You can also do this at run time using the View.setImportantForAccessibility() API.

<TextView
    android:importantForAccessibility="no"
    ... />

Andere Tipps

Programmatically you can say:

view.setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top