0

我想创建一个 Eddittext 以从左到右输入 2 位小数的货币值。如果没有值,则显示 0.00,并且当用户键入时,文本应根据以下规则更改: 输入规则

我已经尝试使用 TextWatcher 完成它,就像在类似的问题中一样,但我无法完成它,因为它在更新文本后一直调用 TextWatcher。

4

2 回答 2

1

我终于让它工作了,就像我想在这段代码中使用 TextWatcher 一样,希望它可以帮助某人:

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            if ((count - before) > 0) {
                String text = s.toString().replace(',', '.');
                text = text.replace("..", ".");
                if (text.equals(".")) {
                    text = "0,00";
                    amount_field.setText(text);
                    amount_field.setSelection(2);

                } else {
                    int counter = 0;
                    for (int i = 0; i < text.length(); i++) {
                        if (text.charAt(i) == '.') {
                            counter++;
                            if (counter > 1) {
                                break;
                            }
                        }
                    }

                    if (counter > 1) {
                        StringBuilder sb = new StringBuilder(text);
                        sb.deleteCharAt(start);
                        amount_field.setText(sb.toString().replace('.', ','));
                        amount_field.setSelection(start);

                    } else {
                        Float value = Float.valueOf(text);
                        String result = String.format("%.2f", value);
                        amount_field.setText(result.replace('.', ','));
                        if (start != result.length()) {
                            amount_field.setSelection(start + 1);
                        } else {
                            amount_field.setSelection(start);
                        }
                    }
                }
            }
        }
于 2015-10-08T07:46:58.490 回答
0

尝试这个:

String yourStringToPutIntoTextView = String.format("%.2f", YourFloat);

这里有一个例子:

List<Float> listTestValue = new ArrayList<Float>();
listTestValue.add(new Float(10));
listTestValue.add(new Float(10.10));
listTestValue.add(new Float(1010));
listTestValue.add(new Float(0));
listTestValue.add(new Float(0.9));
listTestValue.add(new Float(.12));
listTestValue.add(new Float(0.01));
for(Float f : listTestValue)
{
    String s = String.format("%.2f", f);
    System.out.println(s);
}

如果你有 f = 0 的 noInput 格式字符串,像这样:

String noInput = String.format("%.2f", (float)0);

注意值必须是Float!

输出:

10,00

10,10

1010,00

0,00

0,90

0,12

0,01

于 2015-10-06T16:58:56.053 回答