I dont want my softkeyboard show these suggestions and any of the symbols like !, ", ,, :,'.
Asked
Active
Viewed 2,522 times
2 Answers
6
To stop offering suggestions, add the following attribute to your EditText in XML:
android:inputType="textNoSuggestions"
and/or add multiple types using | as below:
android:inputType="textNoSuggestions | text"
waqaslam
- 66,380
- 16
- 161
- 174
-
No, it will only skip suggestions... and I don't think by default alphabet-only keyboard is possible, unless you design one for yourself. But as an alternate, you may use `TextWatcher` on your EditText to omit unwanted characters – waqaslam Jul 17 '12 at 09:00