I need the input to adapt to the final number as they enter the digits, without actually entering the decimal point. The best way to explain this is with an example:
Suppose the user starts off with an EditText field which contains this:
.
The user wants to enter 1234.01 into the field (i.e. the digits 0,1,2,3,4). Then he/she starts by entering 1, and the field should look like this:
0.01
Then:
0.12
Next:
1.23
Next:
12.34
Next:
123.40
Finally:
1234.01
So as you may notice, the decimal places itself accordingly as the numbers are inputted. Is it possible to do this as the numbers are being entered? Thanks.