禁用键盘自动更正

时间:2014-05-04 06:45:07

标签: android

我注意到某些应用/甚至访问手机上的网站,我的手机键盘没有为我提供自动更正功能。

我想知道,当有人点击EditText时,是否可以在我的应用中禁用自动更正?

谢谢

1 个答案:

答案 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"