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」をあなたの価格に変更するだけです。これはおそらく、doubleの代わりにfloatでも同様に機能する可能性があります。

于 2012-06-26T02:09:52.523 に答える