禁用多行 EditText 中的建议

发布于 2024-12-10 10:38:04 字数 992 浏览 1 评论 0原文

如何禁用多行 EditText 中的自动更正/自动建议功能?

我尝试过:

EditText 没有自动更正等

Android:多行和多行EditText 中没有自动建议

如何关闭 EditText 中的建议?

<一href="https://stackoverflow.com/questions/7022581/how-to-set-multiline-firstletter-caps-and-disable-suggestions-on-edittext">如何设置多行、首字母大写并禁用编辑文本建议

如何关闭建议在 EditText 中?

提到的方法(如“textFilter|textMultiLine|textNoSuggestions”(任何组合))都不起作用,既没有在 XML 中声明,也没有以编程方式进行更改。 看来 EditText 框要么接受多行建议,要么接受关闭建议,但不能同时接受两者。

我认为了解我使用的是 Android 2.3.3 的 HTC Desire HD 非常重要。我没有任何其他设备来测试这个。

此行为是 HTC Sense UI 固有的吗?

有什么想法吗?

How do you disable the autocorrection/autosuggestion features in a multilined EditText?

I tried:

EditText without auto-correction, etc

Android: Multiline & No autosuggest in EditText

How can I turnoff suggestions in EditText?

How to set multiline,firstletter caps and disable suggestions on edittext

How can I turnoff suggestions in EditText?

None of the mentioned methods like "textFilter|textMultiLine|textNoSuggestions" (in any combination) worked, neither declared in XML nor programmatically changed.
It seems that the EditText-box takes either multiline or turned-off suggestions, but not both at the same time.

I think it is important to know that I'm using the HTC Desire HD with Android 2.3.3. I don't have any other device to test this.

Is this behaviour inherent to the HTC Sense UI?

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一花一树开 2024-12-17 10:38:04

您在 EditText 中为 MultiLine 和 NoSuggestions 指定的 inputType 标记是系统可以忽略标志,具体取决于就其喜好而言。

但是,我可以确认 EditText XML 中的 android:inputType="textNoSuggestions|textMultiLine" 在 Nexus 和 Motorola 智能手机中工作得很好。因此,我猜测您面临此问题是由于您的测试设备偏好所致。

The inputType tag that you specify in EditText for MultiLine and NoSuggestions are flags that can be ignored by the system depending on its preferences.

But, I can confirm that android:inputType="textNoSuggestions|textMultiLine" in the EditText XML works perfectly fine in Nexus and Motorola smartphones. So am guessing its due to your test device preferences that you are facing this problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文