金额输入过滤,限制输入的有效数字

/**
* 描述   :金额输入过滤器,限制小数点后输入位数
 * 默认限制小数点2位
 * 默认第一位输入小数点时,转换为0.
 * 如果起始位置为0,且第二位跟的不是".",则无法后续输入
 * Created by Dashingl on 2019/10/26 15:30.
 */

public class MoneyValueFilter extends DigitsKeyListener {

public MoneyValueFilter() {
    super(false, true);
}

// 默认2位有效数字
private int digits = 2;

public MoneyValueFilter setDigits(int d) {
    digits = d;
    return this;
}

@Override
public CharSequence filter(CharSequence source, int start, int end,
                           Spanned dest, int dstart, int dend) {
    CharSequence out = super.filter(source, start, end, dest, dstart, dend);


    // if changed, replace the source
    if (out != null) {
        source = out;
        start = 0;
        end = out.length();
    }

    int len = end - start;

    // if deleting, source is empty
    // and deleting can't break anything
    if (len == 0) {
        return source;
    }

    //以点开始的时候,自动在前面添加0
    if (source.toString().equals(".") && dstart == 0) {
        return "0.";
    }
    //如果起始位置为0,且第二位跟的不是".",则无法后续输入
    if (!source.toString().equals(".") && dest.toString().equals("0")) {
        return "";
    }

    int dlen = dest.length();

    // Find the position of the decimal .
    for (int i = 0; i < dstart; i++) {
        if (dest.charAt(i) == '.') {
            // being here means, that a number has
            // been inserted after the dot
            // check if the amount of digits is right
            return (dlen - (i + 1) + len > digits) ?
                    "" :
                    new SpannableStringBuilder(source, start, end);
        }
    }

    for (int i = start; i < end; ++i) {
        if (source.charAt(i) == '.') {
            // being here means, dot has been inserted
            // check if the amount of digits is right
            if ((dlen - dend) + (end - (i + 1)) > digits)
                return "";
            else
                break;  // return new SpannableStringBuilder(source, start, end);
        }
    }


    // if the dot is after the inserted part,
    // nothing can break
    return new SpannableStringBuilder(source, start, end);
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>