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.
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"