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
We can use,
edit_text.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_SIGNED);
if we need to use programmatically..