Warning on EditText

后端 未结 4 1180
后悔当初
后悔当初 2021-02-05 20:52

I\'m trying to define an EditText but this warning is shown:

This text field does not specify an inputType or a hint.

The code in

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-05 21:19

    This is a known issue. Sometimes it doest work with changing to:

    android:inputType="text"
    

    I got it to work by setting:

    android:inputType="textNoSuggestions"
    

    Hope this helps

提交回复
热议问题