web-dev-qa-db-ja.com

Androidで数千の区切り文字(、)を使用して入力するときに、EditTextの入力をフォーマットするにはどうすればよいですか?

私はedittextを持っています、それは10進数なしで数値だけを取得します。

Android:inputType="number"

入力中に数千を分離したい。たとえば、25,000。

TextWatcherを使用する必要があることはわかっています。このコードを使用しましたが、機能させることができませんでした。

@Override
        public void afterTextChanged(Editable viewss) {
            String s = null;
            try {
                // The comma in the format specifier does the trick
                s = String.format("%,d", Long.parseLong(viewss.toString()));
            } catch (NumberFormatException e) {
            }

        }

私がそうするのを手伝ってくれませんか?

11
mahdi yamani

この例をテストします。

import Java.text.DecimalFormat;
import Java.text.ParseException;

import Android.text.Editable;
import Android.text.TextWatcher;
import Android.widget.EditText;

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;
        }
    }

}

これを使用するには、TextChangedListenerをEditTextコンポーネントに追加します。

editText.addTextChangedListener(new NumberTextWatcher(editText));
16

これをアプリのGradleコンパイルに追加します 'com.aldoapps:autoformatedittext:0.9.3' in XML xmlns:app = "http://schemas.Android.com/apk/res-auto"

<com.aldoapps.autoformatedittext.AutoFormatEditText
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    app:isDecimal="true"
    Android:maxLength="8"
    Android:id="@+id/number"/>

このライブラリは自動的に(、)(。)を追加します

1
TechVINO
DecimalFormat formatter = new DecimalFormat("#,###,###");
String yourFormattedString = formatter.format(100000);

DecimalFormatを使用する

0
Somnath Lenka