问题
I dont want my softkeyboard show these suggestions and any of the symbols like !, ", ,, :,'.
回答1:
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"
回答2:
You can add this line to you EditText
android:inputType="textFilter"
See here why it sometimes better than textNoSuggestions
来源:https://stackoverflow.com/questions/11519030/how-to-avoid-soft-keyboard-showing-auto-correct-suggestion