Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
For more information on inputType, check these docs: developer.android.com/reference/android/widget/… – summea Feb 24 '12 at 18:45

3 Answers

up vote 17 down vote accepted

You could add a hint :

android:hint="This will appear to the user if he didn't enter something yet in the EditText"

and a inputType so you could present to the user a better suited soft keyboard for the text he is suposed to enter in the EditText:

android:inputType="number"

will present a soft keyboard with only numbers and various signs.
Those are just warnings, you could ignore them but is better for the user to implement them.

share|improve this answer
Thanks now its ok – Jjreina Feb 24 '12 at 19:02
Nice it's working for me too – vivek salve Dec 28 '12 at 12:25
 <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:inputType="text"
        >  

I think You should add input type.......

share|improve this answer
Thanks now its ok – Jjreina Feb 24 '12 at 19:01

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.