我正在使用一個類來將我的EditText的值格式化爲貨幣。這個類使用函數NumberFormat.getCurrencyInstance()。format((parsed/100));格式化。這個班級使我的價值與兩個decimal地方(R $ 2,00)。我希望它有三位小數(R $ 2,000)。它的氣體價值。在巴西,我們使用三位小數的氣體。如何使用帶小數點後三位的貨幣掩碼?
這是我使用的類:
public class MascaraMonetaria implements TextWatcher{
final EditText mEditText;
String current;
static Context context;
public MascaraMonetaria(EditText mEditText, String current, Context context) {
super();
this.mEditText = mEditText;
this.current = current;
}
@Override
public void afterTextChanged(Editable arg0) {}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {}
@Override
public void onTextChanged(CharSequence s, int arg1, int arg2, int arg3) {
if (!s.toString().equals(current)) {
mEditText.removeTextChangedListener(this);
String cleanString = s.toString().replaceAll("[R$,.]", "");
double parsed = Double.parseDouble(cleanString);
String formatted = NumberFormat.getCurrencyInstance().format((parsed/100));
current = formatted;
mEditText.setText(formatted);
mEditText.setSelection(formatted.length());
mEditText.addTextChangedListener(this);
}
}
public static double stringMonetarioToDouble(String str) {
double retorno = 0;
try {
boolean hasMask = ((str.indexOf("R$") > -1 || str.indexOf("$") > -1) && (str
.indexOf(".") > -1 || str.indexOf(",") > -1));
// Verificamos se existe máscara
if (hasMask) {
// Retiramos a mascara.
str = str.replaceAll("[R$]", "").replaceAll("[$]", "").replaceAll("[.]", "").replaceAll("[,]", ".");
}
// Transformamos o número que está escrito no EditText em double.
retorno = Double.parseDouble(str);
} catch (NumberFormatException e) {
}
return retorno;
}
}
謝謝爲答案,但它不起作用。 – Roland