I\'m trying to define an EditText but this warning is shown:
EditText
This text field does not specify an inputType or a hint.
The code in
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