Android Custom TextView to show Currency

杀马特。学长 韩版系。学妹 提交于 2019-12-05 18:46:42

Correct way would be this: To create a custom TextView as a Java Class

public class RialTextView extends TextView {

    String rawText;

    public RialTextView(Context context) {
        super(context);

    }

    public RialTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public RialTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void setText(CharSequence text, BufferType type) {
        rawText = text.toString();
        String prezzo = text.toString();
        try {

            DecimalFormatSymbols symbols = new DecimalFormatSymbols();
            symbols.setDecimalSeparator(',');
            DecimalFormat decimalFormat = new DecimalFormat("###,###,###,###", symbols);
            prezzo = decimalFormat.format(Integer.parseInt(text.toString()));
        }catch (Exception e){}

        super.setText(prezzo, type);
    }

    @Override
    public CharSequence getText() {

        return rawText;
    }
}

and in the XML instead of <TextView tag using something like this:

<com...RialTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Price"
        android:id="@+id/tv_itemgriditems_Price"
        android:layout_below="@+id/tv_itemgriditems_Remain"
        android:layout_centerHorizontal="true"
        android:textSize="15sp"
        />

You have to modify your edittext in each time you enter an input character. Try this code snippet

EditText currencyEditText= (EditText)findViewById(R.id.medittext);
searchTo.addTextChangedListener(new TextWatcher() {

    @Override
    public void afterTextChanged(Editable s) {
        // TODO Auto-generated method stub

    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {

        DecimalFormatSymbols symbols = new DecimalFormatSymbols();
        symbols.setDecimalSeparator(',');
        DecimalFormat decimalFormat = new DecimalFormat("Rls ###,###,###,###", symbols);
        String prezzo = decimalFormat.format(Integer.parseInt(s));
        currencyEditText.setText(prezzo);
    } 

});

Let's suppose you have a class MyParser:

public class MyParser {

    //...
    public static String getRawValue(value) {
        //Converts value to raw value, for instance, converts Rls 2,120,000 to 2120000
    }

    public static String getViewValue(value) {
        //Converts value to view value, for instance, converts 2120000 to Rls 2,120,000
    }
    //...
}

Now, let's have another class, called MyTextView:

public class MyTextView extends TextView {

    public CharSequence getText () {
        return MyParser.getRawValue(super.getText());
    }

    public void setText (CharSequence text, TextView.BufferType type) {
        super.setText(MyParser.getViewValue(text), type)
    }

}

You can use the same DecimalFormat object that you used to format the string to parse it back the other way:

DecimalFormatSymbols symbols = new DecimalFormatSymbols();
symbols.setDecimalSeparator(',');
DecimalFormat decimalFormat = new DecimalFormat("Rls ###,###,###,###", symbols);

try {
    // get int value
    int i = decimalFormat.parse(textView.getText().toString()).intValue();
} catch (ParseException e) {
    // handle error here
}

for convert long to rial format

    public String FormatCost(long cost){
    try {
        DecimalFormatSymbols symbols = new DecimalFormatSymbols();
        symbols.setDecimalSeparator(',');
        DecimalFormat decimalFormat = new DecimalFormat("###,###,###,###", symbols);
        return decimalFormat.format(Integer.parseInt(cost+""));
    }catch (Exception e) {
        return cost + "";
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!