How can I limit the EditText box input to two characters after a decimal place?
问题 i'm working on an android application with an EditText box. In this box i want the user to enter currency. I have already restricted the keyboard to numbers and decimals using the handy android:inputType="numberDecimal" but i would like to be able to stop the user from entering more than two digits after the decimal place (so that the content is saved as a currency and also just because i think it's important that the user is clear about what they're entering). However i don't have much