基于输入类型的用户友好键盘

时间:2012-04-18 09:48:19

标签: android mobile types input keyboard

这是OS提供的功能,还是基于浏览器,还是基于设备?

在iphone上,它会显示相应的键盘,具体取决于字段类型,如url / number / email。

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

可以为andriod启用吗?

2 个答案:

答案 0 :(得分:0)

您可以在layout.xml中设置 android:inputType 属性。 如下:

<EditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:inputType="textEmailAddress" />

答案 1 :(得分:0)

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

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