I´m tryning to define a EditText but show this warning:
This text field does not specify an inputType or a hint.
The code in main.xml is:
<EditText android:id="@+id/input"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/textTest" />
How can I fix it?
Thanks you very much.