I want to print a double No. in TextView like this format 10699657.6, currently this is like 1.06996576E7 . please can any one help me?
Asked
Active
Viewed 605 times
2
-
1This "1.06996576E7" is totally human readable :) – nathan Nov 05 '12 at 09:42
2 Answers
5
DecimalFormat dform = new DecimalFormat("0.###E0");
Similar question found here: Convert scientific notation to decimal notation
-
@WasimAkram you still did not accept the answer. Click the CHECK MARK next to my answer and it will be green indicating that you accepted the answer – Ahmad Nov 05 '12 at 10:21