I encountered a problem in android, for example:
Number 78900000 will show 7.8E7 and not the number itself.
DecimalFormat df2 = new DecimalFormat("#########.00"); dd2dec = new Double(df2.format(number).doubleValue()); How can I format the number and show it in original form without in scientific form ?