tags:

views:

24

answers:

1

My EditText needs to accept input consisting of partial words, names, etc. At least on my HTC Desire, this is difficult since the keyboard wants to suggest and/or correct some entries (e.g., changes "gor" to "for"). I tried setting textNoSuggestions on the view, but that doesn't fix it.

Any simple solution to this?

+1  A: 

Try this:

android:inputType="textFilter"

If that doesn't work, try:

android:inputType="textFilter|textNoSuggestions"
magicman
textFilter worked. Thanks!
gordonwd
If my answer works for you, you should mark it as the solution by clicking the checkmark next to this answer. If you don't, you'll get a low acceptance rate, and people might not answer your questions.
magicman