Bom pessoal tenho o seguinte código
for (int i = 0; i < es.length; i++) {
if (es[i].getCorrection() > 0) {
total = ((es[i].getPulse() / 6100f));
} else {
total = ((es[i].getPulse() / 6100f));
}
DecimalFormat df = new DecimalFormat("#,##0.000");
df.format(total);
Serv.setText(Float.toString(total));
}
E gostaria de saber porque ele não estaria pegando essa máscara?
Desde já agradeço pela atenção de todos.