这是操作系统提供的功能,还是基于浏览器还是基于设备?
在 iphone 上,它会根据 url/number/email 等字段类型显示相应的键盘。
检查这个http://www.456bereastreet.com/archive/201004/html5_input_types/
可以为安卓启用吗?
keyboard support with input type
如果您想使用 webview 启用相应的键盘,我们可以使用以下链接进行检查。
您可以android:inputType
在 layout.xml 中设置属性。比如下图:
<EditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:inputType="textEmailAddress" />