### Configure EditText Accessibility with LabelFor and Hint in Android Source: https://base.uber.com/6d2425e9f/p/519906-talkback This example shows how to configure an EditText for accessibility in Android. It includes setting the 'labelFor' attribute to associate a label with the input field and defining a 'hint' to guide user input, both of which are read by TalkBack. ```kotlin // Assuming 'labelTextView' is the TextView above the EditText editText.labelFor = labelTextView.id editText.hint = "Enter your email address" ``` -------------------------------- ### Example of OnClickLabel for Android Default Button Source: https://base.uber.com/6d2425e9f/p/519906-talkback This example demonstrates how to specify an OnClickLabel for a Button role in Android, indicating that the default TalkBack hint should be used. This clarifies that no custom action is required for this element. ```text OnClickLabel: Double-tap to activate (Android default) ```