Android Question Convert Double with Enum to String

janitra

Member
I have a long number from database.
The number is 100000000
I need yo do some mathematics operation
When I put it into Double, its turn into 1.0E8.

After I've done with the mathematics operation, I need to convert the number into string.
But it still retain 1.0E8 format.
How do I change it back to 100000000?
 
Top