I originally called String.format this way:
String.format
return String.format(\"%s %f %f\", anotherString, doubleA, doubleB);
Which made Androi
Simply add Your Locale; for English Locale,
return String.format(Locale.ENGLISH,"%s %f %f", anotherString, doubleA, doubleB);