Reputation: 3208
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
Reputation: 3822
try to add such types of inputs in html
<input type="number" />
<input type="tel" />
this should opens numeric keyboard
Upvotes: 1