これは OS によって提供される機能ですか、それともブラウザーに基づくものですか、それともデバイスに基づくものですか?
iPhone では、url/number/email などのフィールド タイプに応じて、それぞれのキーボードが表示されます。
これをチェックしてください http://www.456bereastreet.com/archive/201004/html5_input_types/
これは、android で有効にできますか?
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" />
keyboard support with input type
WebView でそれぞれのキーボードを有効にする場合は、次のリンクを使用して確認できます。