I have different float values like
- 0.0000009
- 8145.32
- 123.00001
- 1235.01000
I want them showing to a TextView
or converting them to string without getting an exponential notation.
when I use String.format("%.8f", num)
, It is getting random values after the real number ( num = 8145.32 -> 8145.32539487).
Help me, Thank you