0

如果我在 AutoCompleteTextView 中输入单词“wood”,则结果会出现在下拉列表中:“bolly wood”“holly wood”

“木头”

我想要这样的结果:“木头”“宝利木”“冬青木”

AutoCompleteTextView 进行字母排序。如何停止这种排序???

4

2 回答 2

0

使用android:completionThreshold="1"
显示选项列表,同时输入单个字符('w')..

所以可能的结果就像**“木头”

“宝莱木”

“冬青树”**

<AutoCompleteTextView
 android:id="@+id/autocomplete"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:layout_margin="10dp"
 android:paddingLeft="10dp"
 android:completionThreshold="1"
 android:textSize="18sp"
             />
于 2013-09-24T06:29:28.507 回答
0

你试过这个吗:

在布局 XML 中,将以下属性添加到 EditText:

android:inputType="text|textNoSuggestions"

如果上述方法和上述方法都不起作用,那么这几乎肯定是模拟器和其他设备的问题,您应该直接联系制造商。

另请参阅:android:inputType(请注意,EditText 是 TextView 的子类,这就是该属性也适用于 EditTexts 的原因)。

于 2013-09-24T06:19:27.180 回答