我注意到某些应用/甚至访问手机上的网站,我的手机键盘没有为我提供自动更正功能。
我想知道,当有人点击EditText时,是否可以在我的应用中禁用自动更正?
谢谢
答案 0 :(得分:1)
尝试添加
android:inputType="text|textNoSuggestions"
你xml。
请参阅how to avoid soft keyboard showing auto correct suggestion?
<强>更新强>
在阅读How to disable displaying "suggestions" on the Soft Keyboard之后,似乎上述情况在少数情况下无效。
因此,更安全的方法是使用
android:inputType="textNoSuggestions|textVisiblePassword"
或
android:inputType="textFilter"