Reputation: 12925
I want to use default keyboard for, but want also that it occurs with numeric input type.
Does anybody know how to do that?
Maybe there is a way to press '?123'-key programmatically?
I've took a look to list of inputTypes, but none of them seems to be the proper one for my need.
Thank you
Upvotes: 0
Views: 2052
Reputation: 128448
You can use either of these 3:
For example: android:inputType="numberDecimal"
Upvotes: 2