arnp
arnp

Reputation: 3208

How to change the keyboard to numeric for particular fields in webview?

I need the keyboard change automatically from normal to numeric keyboard only for particular fields such as phone number, ZipCode etc. is foucssed. I can be able to enter the details in fields in webview. Can i make this possible in java code or html page design.

Upvotes: 0

Views: 635

Answers (1)

Vladimir
Vladimir

Reputation: 3822

try to add such types of inputs in html

<input type="number" />
<input type="tel" />

this should opens numeric keyboard

Upvotes: 1

Related Questions