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.
我在 Android 上使用 PhoneGap。我需要根据特定需要更改键盘布局。一个很好的例子是查看 GMail 应用程序在从一个文本项移动到另一个文本项时如何更改键盘布局。当您需要输入电子邮件时,您会看到 @ 符号显示,但当焦点位于其他文本字段时,它将被移除。
我的 UI 不是原生的,而是 html。我正在使用 PhoneGap 并通过 JS API 显示键盘。我可能不得不将代码添加到我目前正在使用的软键盘插件中。
谢谢,伊兰
你不能。在本机应用程序中,您可以在每个字段上设置不同的 IMEOptions,将它们描述为不同类型的字段,然后键盘将决定适合的布局。我不确定你是否可以通过 phonegap 做到这一点,但如果可以的话,这就是方法。
尝试:
<input type="email" /> <input type="tel" /> <input type="url" />