Meaning of "No label views point to this text field" warning message

android, android-lint

Solution

The `labelFor` is an attribute for accessibility options. You assign this to a label so that if, on a form , user clicks a textedit field , android can know what to read (TalkBack) to user.

The id you assigned to it doesn't seem to be a valid one. why there are two `@id` in the id? Use ids like this: `@id/editText1`

Problem

What is the meaning of this warning? No label views point to this text field with an android:labelFor="@ id/@ id/editText1" attribute Note that the double id (`@id/@id`) is a problem with the error message text and does not reflect the XML content (which is the correct syntax).

Original source

Related problems