Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不希望我的软键盘显示这些建议和任何符号,如!、“、、、:、”。
要停止提供建议,请将以下属性添加到 XML 中的 EditText:
android:inputType="textNoSuggestions"
|和/或使用如下添加多种类型:
|
android:inputType="textNoSuggestions | text"
您可以将此行添加到您的 EditText
android:inputType="textFilter"
在这里查看为什么它有时比 textNoSuggestions 更好