I have an edit Text field with an attribute.
android:inputType="numberDecimal"
I want to hide the comma, negative, and space key when the soft keyboard pops up.
I only want the keys availabe to be "0123456789." backspace and enter.
I have tried using android:digits="0123456789."
but the comma, negative and space key are still in use.
Also, is there a way to ensure that only one decimal is entered.