I'm working on a program which contains EditText
.
EditText only accept DecimalNumber .
But in my case :- this EditText
accepts ".3232"
what I need:- Output should be "0.3232"
How should I achieve this? I have used
android:inputType="numberDecimal|number"
Help Needed