I'm building an app in Android Studio that gets a value entered in a edittext
, passes it to BigDecimal
, and performs some operations.
In the field to enter this value, I marked android:inputType="numberDecimal"
, however, the keyboard is not inserting "." Or "," in any way, and that prevents me from receiving the cents of that value.
What I really needed was a field with a mask that would display $ 0.00 and the person would only enter the numbers, but if I can just get the tab between full value and pennies I would have been satisfied.