更改WebView的android输入法

发布于 2024-11-17 08:04:34 字数 90 浏览 2 评论 0原文

我有一个 WebView,它加载带有表单的网页,并且希望使用最基本的键盘,以便在使用屏幕键盘作为输入法时节省屏幕空间。我还想禁用屏幕键盘中的单词建议等功能。这可能吗?

I have a WebView that loads a webpage with a form and would like to use the most basic keyboard possible in order to conserve screen real estate if they are using the onscreen keyboard as their input method. I would also like to disable things like word suggestions in the onscreen keyboard. Is this possible?

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

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

发布评论

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

评论(2

深海蓝天 2024-11-24 08:04:34

您无法在任何地方更改输入法——只有用户可以更改其输入法。

在禁用搜索建议方面,我没有看到任何钩子来改变从 WebView 公开的行为,抱歉。

You cannot change the input method, anywhere -- only users can change their input method.

In terms of disabling search suggestions, I haven't seen any hooks to change that behavior that are exposed from WebView, sorry.

无名指的心愿 2024-11-24 08:04:34

我认为您可以向 HTMl 组件添加一些属性来实现您想要的功能。
这适用于我测试过的 Android 设备(三星 Galaxy 4 和 Nexus 7),但如果这不适用于其他设备,我也不会感到惊讶。

<input autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"> test

<textarea spellcheck="false" autocorrect="off" autocapitalize="off" autocomplete="off"> test </textarea>

I think you can add some attributes to the HTMl component that will make what you want.
This works in the Android devices I have tested (Samsung Galaxy 4 and Nexus 7), but I would not be surprised if this does not work in other devices.

<input autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"> test

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