What is the meaning of this warning?
No label views point to this text field with an android:labelFor=\"@ id/@ id/editText1\" attribute
It means that you probably should define a label for this edit text and link them using a labelFor inside that labels definition.
example code:
android:text="I'm a label" />
android:layout_width="wrap_content"
android:inputType="text"
android:layout_height="wrap_content" />
and it's not only for text views.