how to avoid soft keyboard showing auto correct suggestion?

自作多情 提交于 2019-12-12 14:42:01

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!