6

所以只是一个非常直截了当的问题。我有一个保存数字值的文本视图(不断更新。那么有没有一种方法可以在数字增加时自动添加逗号?我知道 Visual Basic 中有一个方法,但我还是很陌生安卓/java平台。

编辑:

    String number = textView1.getText().toString();
    double amount = Double.parseDouble(number);
    DecimalFormat formatter = new DecimalFormat("#,###");
    String formatted = formatter.format(amount);

    textView1.setText(formatted);

这不工作?

4

3 回答 3

19

您可以使用 DecimalFormat,因为它甚至支持语言环境(有些地方使用.而不是,

String number = "1000500000.574";
double amount = Double.parseDouble(number);
DecimalFormat formatter = new DecimalFormat("#,###.00");
String formatted = formatter.format(amount);
于 2013-08-28T02:25:50.373 回答
19

高效的方式:

private String getFormatedAmount(int amount){
  return NumberFormat.getNumberInstance(Locale.US).format(amount);
}

结果:

IP代表输入 OP代表输出

采购 10 订单 订单10

输入/ 100 输出/输出 100

I/P 1000O/P 1,000

I/P 10000O/P 10,000

I/P 100000O/P 1,00,000

I/P 1000000O/P 10,00,000

希望这会帮助你。

于 2016-02-12T05:05:24.143 回答
8

你可以实现TextWatcher

public class NumberTextWatcher implements TextWatcher {

    private DecimalFormat df;
    private DecimalFormat dfnd;
    private boolean hasFractionalPart;

    private EditText et;

    public NumberTextWatcher(EditText et)
    {
        df = new DecimalFormat("#,###.##");
        df.setDecimalSeparatorAlwaysShown(true);
        dfnd = new DecimalFormat("#,###");
        this.et = et;
        hasFractionalPart = false;
    }

    @SuppressWarnings("unused")
    private static final String TAG = "NumberTextWatcher";

    @Override
    public void afterTextChanged(Editable s)
    {
        et.removeTextChangedListener(this);

        try {
            int inilen, endlen;
            inilen = et.getText().length();

            String v = s.toString().replace(String.valueOf(df.getDecimalFormatSymbols().getGroupingSeparator()), "");
            Number n = df.parse(v);
            int cp = et.getSelectionStart();
            if (hasFractionalPart) {
                et.setText(df.format(n));
            } else {
                et.setText(dfnd.format(n));
            }
            endlen = et.getText().length();
            int sel = (cp + (endlen - inilen));
            if (sel > 0 && sel <= et.getText().length()) {
                et.setSelection(sel);
            } else {
                // place cursor at the end?
                et.setSelection(et.getText().length() - 1);
            }
        } catch (NumberFormatException nfe) {
            // do nothing?
        } catch (ParseException e) {
            // do nothing?
        }

        et.addTextChangedListener(this);
    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after)
    {
    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count)
    {
        if (s.toString().contains(String.valueOf(df.getDecimalFormatSymbols().getDecimalSeparator())))
        {
            hasFractionalPart = true;
        } else {
            hasFractionalPart = false;
        }
    }

}

要使用它,您可以使用

editText.addTextChangedListener(new NumberTextWatcher(editText));

资料来源:Roshka 开发团队

于 2013-08-28T02:30:36.210 回答