9

我已经搜索了这个问题,但没有为我的案例找到任何答案。
我有一个 AutoCompleteTextView 和一些字符串作为建议(城市名称)。

Android 用红线标记它们。

在此处输入图像描述

我认为这是Android的拼写检查器。如何防止拼写检查?

4

3 回答 3

12

找到了最佳解决方案:

android:inputType="textPhonetic"
于 2013-07-17T16:36:59.260 回答
7

把它放在你的 XML 中:

android:inputType="textNoSuggestions"
于 2013-07-17T15:17:59.397 回答
6

我不确定,但是

您可以使用来android:inputType="textNoSuggestions"摆脱建议和自动完成文本视图。android:autoTextfalse

另一种可能的出路是使用android:inputType="textVisiblePassword"

你可以看看这里

于 2013-07-17T15:17:44.600 回答