Ai Da
0
Q:

how to convert string to double in android studio

Double lat;
String lat_str = "17.456174";
try {
lat = Double.parseDouble(lat_str);
}catch (NumberFormatException e) {
//lat_string does not contain valid double value
}

 
1

New to Communities?

Join the community