InputFilter的使用

本文介绍了一种使用自定义输入过滤器限制Android应用中EditText输入长度的方法。通过实现InputFilter接口并重写filter方法来控制输入内容的最大长度,当输入超过设定长度时会触发提示。
摘要由CSDN通过智能技术生成

class TextLengthFilter implements InputFilter {

        private int mMaxLength;
       Toast mToast; 
        public TextLengthFilter(int maxLength) {
            mMaxLength = maxLength;
        }
        
        @Override
        public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
            int keep = mMaxLength - (dest.length() - (dend - dstart));
            if (keep <= 0) {
            	if(mToast != null){
            		mToast.cancel();
            		mToast = null;
            	}
            	mToast = Toast.makeText(getApplicationContext(), R.string.event_edit_activity_prompt, Toast.LENGTH_SHORT);
            	mToast.show();
                return "";
            } else if (keep >= end - start) {
                return null; // keep original
            } else {
                keep += start;
                if (Character.isHighSurrogate(source.charAt(keep - 1))) {
                    --keep;
                    if (keep == start) {
                        ToastUtils.showToastShort(R.string.event_edit_activity_prompt, getApplicationContext());
                        return "";
                    }
                }
                ToastUtils.showToastShort(R.string.event_edit_activity_prompt, getApplicationContext());
                return source.subSequence(start, keep);
            }
        }
    }


                TextLengthFilter filter =new TextLengthFilter(100); 
        	mSearchEditText.setFilters(new InputFilter[]{filter});









评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值