gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:40:16 25 4
gpt4 key购买 nike

我有这个代码:

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 进行测试。

最佳答案

根据我的发现,您需要改用它:

android:inputType="textNoSuggestions|textVisiblePassword"

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

关于android - 如果我在 AutocompleteTextView 上设置 TYPE_TEXT_FLAG_NO_SUGGESTIONS,为什么退格键会停止工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9503304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com