I have an Android EditText that I want to have the number keyboard come up.
EditText
If I set the android:inputType to numberSigned, I get the number keyboard and t
You are just missing this in your EditText,
android:inputType="numberDecimal|numberSigned"