I have a TextView and an EditText. The TextView uses android:labelFor="@+id/EditTextId"
;
The EditText also has a hint that represents and example of input, that I only want to be visible for the users that do not use TalkBack, and not be read by the TalkBack.
android:contentDescription="Mandatory field"
android:hint="Example of input"
The TalkBack would usually read (how I want it to work):
"Mandatory field, Edit Box for Text View"
but instead, reads:
"Example of input, Edit Box for Text View"