Does Android have a numeric keypad that works like a computer keyboard?

I am working on android app and some of my EditTexts. I am currently using the "number" input type, which displays the keyboard with the device you usually see on phones with "123" on the top line:

enter image description here

However, for reasons specific to using this application, I would prefer a keyboard with the style you see on physical keyboards with "123" on the bottom line:

enter image description here

Does android have a keyboard that looks like you see on physical keyboards, or do I need to create my own input method if I wanted to achieve this?

+3


source to share


1 answer


Unfortunately there is no built-in parameter that replaces the strings "123" and "789", so you need to create your own keyboard layout and handle the input.



+1


source







All Articles