如果我在AutocompleteTextView上设置TYPE_TEXT_FLAG_NO_SUGGESTIONS,为什么退格会停止工作?

时间:2012-02-29 16:57:03

标签: android

我有这段代码:

AutoCompleteTextView et = new AutoCompleteTextView(context);
et.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

使用此代码,AutoCompleteTextView可防止退格键工作!如果我将类类型更改为EditText,则会发生相同的行为。

但是使用此代码,退格键可以工作:

AutoCompleteTextView et = new AutoCompleteTextView(context);
et.setInputType(InputType.TYPE_CLASS_TEXT);

我不想要键盘的自动建议,这就是我使用AutocompleteTextView的原因!有什么建议吗?

我正在测试Android 2.3。

1 个答案:

答案 0 :(得分:1)

根据我的发现,你需要使用它:

android:inputType="textNoSuggestions|textVisiblePassword"

了解更多信息:How can I turnoff suggestions in EditText?