Reputation: 27
Is there a way on iOS to get something better than the normal keyboard when the field is constrained to numeric.
Instead, I would like to get something closer from Android. Like just the number instead of all the junk around i get here
Upvotes: 1
Views: 29
Reputation: 52760
Sure:
myTextField.setConstraint(TextArea.NUMERIC);
There are many constraints e.g. PASSWORD
, DECIMAL
, EMAIL
etc...
Upvotes: 2