本文介绍了Android的:如何添加自定义的软键盘时,表单字段在web视图选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用的WebView为present UI。有没有什么办法,当输入文本表单字段中选择,我可以触发自定义的软键盘?
I am using WebView to present UI. Is there any way that I can trigger custom soft keyboard when input text form field is selected?
推荐答案
看看HTML5的 - 如果你改变你的
take a look at HTML5 - if you change your
<input type="text" ...
为实例
<input type="number" ...
你会得到一个专门的软键盘的数字。
you'll get a specialized soft keyboard for numbers.
下面是一些文档: http://diveintohtml5.ep.io/forms.html
这篇关于Android的:如何添加自定义的软键盘时,表单字段在web视图选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!