Reputation: 5005
Is there an InputType
for (default) Android soft keyboards that is targeted at entering numbers but also allows entering letters?
This would be for an input fields like the house number, that most of the time contains only numbers, but sometimes also letters.
On iOS, there is UIKeyboardTypeNumbersAndPunctuation
that displays the normal keyboard, but with the page that contains the numbers; you can then switch back to the letter page.
Upvotes: 2
Views: 2704
Reputation: 6978
InputType TYPE_TEXT_VARIATION_POSTAL_ADDRESS
seems closest to what you need.
if you want to start with a numeric keyboard initially and then want to switch to qwerty this answer might help you.
Upvotes: 1