i try to save my String value (50000000)
into Double format, while I'm trying to show it again in my Edittext
, I can't to show it in normal format, and it show as (5E+07)
, is there any way to convert from double format into String format?
I have try this way :
Double value_doble = 5E+07;
EditText.setText(String.valueOf(value_doble);
but its Still show as 5E+07, so my question how to convert from Double to String?