LoginSignup
1
1

More than 3 years have passed since last update.

WebView内のテキストフィールドタップ時のキーボード種別

Last updated at Posted at 2020-10-22

WebView内のテキストフィールドを選択した時に表示されるキーボードのタイプは、何によって決まるのか調べました。今回はSFSafariViewで試していますがWKWebViewでも同じはずです。

結論

htmlのtypeの指定によって表示されるキーボードの種類が変わります。

// 普通のキーボード
<input type="text" size="20" maxlength="30">

// PhonePad 
<input type="tel" size="20" maxlength="30">

これ以外にもtypeにurlemailを指定することで、それぞれに応じたキーボードを表示させることができます。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1