首页 > 系统 > Android > 正文

Android 高仿微信转账金钱输入框规则

2019-12-12 04:24:37
字体:
来源:转载
供稿:网友

微信转账输入框规则(可能不全)

1、小数点后两位

2、起始输入小数点,显示0.

3、删除到第一个位置是小数点的时候,第一个位置为0 ,避免出现小数点在第一个位置的情况

修改这个朋友的规则而来,他的规则在保证小数点后两位有个小bug,已经修改

//www.VeVB.COm/article/99361.htm

效果:

@Override public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) { String sourceText = source.toString(); String destText = dest.toString(); //验证删除等按键 if (TextUtils.isEmpty(sourceText)) { if(dstart==0&&destText.indexOf(POINTER)==1){//保证小数点不在第一个位置 return "0"; } return ""; } Matcher matcher = mPattern.matcher(source); //已经输入小数点的情况下,只能输入数字 if(destText.contains(POINTER)) { if (!matcher.matches()) { return ""; } else { if (POINTER.equals(source)) { //只能输入一个小数点 return ""; } } //验证小数点精度,保证小数点后只能输入两位 int index = destText.indexOf(POINTER); int length = destText.trim().length() - index; if (length > POINTER_LENGTH&&dstart>index) { return ""; } } else { //没有输入小数点的情况下,只能输入小数点和数字,但首位不能输入小数点和0 if (!matcher.matches()) { return ""; } else { if ((POINTER.equals(source)) && dstart==0) {//第一个位置输入小数点的情况 return "0."; } } } //验证输入金额的大小 double sumText = Double.parseDouble(destText + sourceText); if (sumText > MAX_VALUE) { return dest.subSequence(dstart, dend); } return dest.subSequence(dstart, dend) + sourceText; }

EditText样式

<EditText android:id="@+id/et" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="20sp" android:maxLength="10" android:inputType="numberDecimal" />

设置filter

EditText ed = (EditText) findViewById(R.id.et);InputFilter[] is = {new CashierInputFilter()};ed.setFilters(is);

源码

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表