Reputation: 122
I'm using an EditText in my android app, and I want a numeric keyboard to show when I tap and try to edit it.
Upvotes: 1
Views: 286
Reputation: 122
There are two easy ways to do it, add one of the following to EditText block in XML file:
android:inputType="phone"
android:digits="1234567890"
android:inputType="number"
Upvotes: 3