我有这段代码:
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。
答案 0 :(得分:1)
根据我的发现,你需要使用它:
android:inputType="textNoSuggestions|textVisiblePassword"