Edit Text Value
Text input elements should have its value available for assistive technologies such as TalkBack and Voice Access.
warning
ContentDescriptions
on EditText
views can override the value on some versions of Android.
Impact
Issues found by this rule impact people with blindness.
EditText
elements should provide information where the Android OS expects. As a result, assistive technologies can communicate information predictably.
Confirmation
- Turn on TalkBack
- Focus on the element
- One of the following will happen:
- Accessible: TalkBack announces the entered text, for, and the associated label's
Text
. - Inaccessible: TalkBack either didn't announce the above information or announced it in the wrong order.
- Accessible: TalkBack announces the entered text, for, and the associated label's
How to Fix
Ensure that a label is properly associated with an EditText or TextField element so that both the name and value are available to assistive technologies.
XML
EditText editText = .......; // Role: EditText
TextView label = .......; // Role: Label
label.setLabelFor(editText.getId()); // Associate the Checkbox with its Name
Compose
@Composable
fun ZipCodeInput() {
OutlinedTextField(
modifier = Modifier.semantics {
this.contentDescription = “Enter your Zip Code”
},
label = “Zip Code”
)
}