1

所有-我已经为此苦苦挣扎了一段时间,并查看了有关此类事情的所有其他问题,但我无法弄清楚:我有一个需要为货币格式化的 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 方法中。这有什么不同吗(例如,只有在用户单击按钮时才会格式化文本)?提前致谢!

4

1 回答 1

2

我过去曾使用这种方法来格式化货币。

static public String customFormat(String pattern, double s ) {
    DecimalFormat myFormatter = new DecimalFormat(pattern);
    String stringFormatOutput = myFormatter.format(s);
    return stringFormatOutput;
 } 

它可以这样使用:

String strPrice = customFormat("$###,##0.00", 300.2568);
mTxt.setText(strPrice);

只需将“300.2568”更改为您的价格。这可能对浮点数而不是双精度数同样有效。

于 2012-06-26T02:09:52.523 回答