I have a dialog, that has few textviews. For each textview I have set different content description and text. For eg.
<TextView
android:id="@+id/tv_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="TV 3"
android:text="Text Number 3" />
When I show the dialog to the user, Talkback reads the text (ie. Text Number 3) of each textview and not the content description (ie. TV 3).
However if I hover on any textview, Talkback reads the content description.
How do I make it read the content description when the dialog is shown?
PS: I have tried to set the content description in layout as well as thru code but no luck
Thanks in advance.