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

后端 未结 8 1336
耶瑟儿~
耶瑟儿~ 2020-12-09 01:58

What is the meaning of this warning?

No label views point to this text field with an android:labelFor=\"@ id/@ id/editText1\" attribute

8条回答
  •  执笔经年
    2020-12-09 02:21

    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.

提交回复
热议问题