所有-我已经为此苦苦挣扎了一段时间,并查看了有关此类事情的所有其他问题,但我无法弄清楚:我有一个需要为货币格式化的 edttext 字段。我已经在与此相关的所有其他问题中尝试了代码,但无论我尝试什么,它都不起作用。这是我的代码:
EditText text = (EditText)findViewById(R.id.edit_bill);
text.setRawInputType(Configuration.KEYBOARD_12KEY);
text.addTextChangedListener(new TextWatcher(){
EditText text = (EditText)findViewById(R.id.edit_bill);
DecimalFormat dec = new DecimalFormat("0.00");
public void afterTextChanged(Editable arg0) {
}
public void beforeTextChanged(CharSequence s, int start,
int count, int after) {
}
public void onTextChanged(CharSequence s, int start,
int before, int count) {
if(!s.toString().matches("^\\$(\\d{1,3}(\\,\\d{3})*|(\\d+))(\\.\\d{2})?$"))
{
String userInput= ""+s.toString().replaceAll("[^\\d]", "");
if (userInput.length() > 0) {
Float in=Float.parseFloat(userInput);
float percen = in/100;
text.setText("$"+dec.format(percen));
text.setSelection(text.getText().length());
}
}
}
});
此代码位于 onClick 方法中。这有什么不同吗(例如,只有在用户单击按钮时才会格式化文本)?提前致谢!