-1

这是操作系统提供的功能,还是基于浏览器还是基于设备?

在 iphone 上,它会根据 url/number/email 等字段类型显示相应的键盘。

检查这个http://www.456bereastreet.com/archive/201004/html5_input_types/

可以为安卓启用吗?

4

2 回答 2

0

keyboard support with input type如果您想使用 webview 启用相应的键盘,我们可以使用以下链接进行检查。

http://www.quirksmode.org/html5/inputs_mobile.html

于 2012-08-22T11:26:43.250 回答
0

您可以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" />
于 2012-04-18T10:14:50.960 回答