If I have an EditText component on my screen that I have specified inputType="decimal" for (i.e. a numeric/decimal field), what is the best way to convert it to an decimal value in the application code?

Numeric EditText

Google recommends avoiding floats, and avoiding creating objects unnecessarily (and I assume any auto-unboxing code is bad too), so I take these as my constraints. I realise a small application probably doesn't need to worry too much, but I haven't been able to find a 'best-practice' solution to this.

The most common solution appears to be this:

double value = Double.parseDouble(txtInput);
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

That is the best solution, you should also check for "NumberFormatException" exceptions, just incase of non valid charecters. Then return feedback to the user if it's wrong.

If you don't want floats, your going to have to look at fixed point arthimetic. The reason they want you to avoid using float is because it's rarely implemented on phone cpu's(Probbly arm), and has to be implemented in software which is slow. Fixed point is usally surported in hardware.

link|improve this answer
Cool, google do specify that the float operations are likely to be software rather than hardware because of the mobile cpu, and thus slower. – brass-kazoo Oct 1 '09 at 22:37
feedback

The reasons that using Double.parseDouble is the best solution:

  • On a normal CPU, float operations are implemented by hardware operations. This is most likely not built into a mobile CPU, and would be replaced by software operations (which are significantly slower).

  • Using static methods of Double, rather than creating an instance via new Double(txtInput) is better for memory usage as it means only the class definition is loaded into the JVM, and we never have additional overhead from state information created by an instance of Double.

  • An alternative to Double.parseDouble is Double.valueOf, but this returns an instance of Double, and then we have created an object unnecessarily since we are just unboxing it to a double primitive.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.