2023年12月7日发(作者:夷辰阳)
关于android中EditText特殊字符过滤和字符长度限制的最优方
法
在开发中,经常会碰到edittext中特殊字符过滤和字符长度限制同时要求的问题,由于android不同版本之间的兼容问题,以及各种手机支
持情况不同,因此,经常会出现一些设备上面不兼容问题。为了解决这个问题,这里经过实践总结,给出一个最优的方案:
首先,对于字符长度的限制我们可以使用3种方法,如下:
1,使用EditText的setFilter方法实现,代码如下:
定义EditText对象mEditText;
字符限制长度int MAX_TEXT_INPUT_LENGTH;
ters(new InputFilter[]{new Filter(MAX_TEXT_INPUT_LENGTH)});
这种方法只能限制固定长度的字符数,也就是说MAX_TEXT_INPUT_LENGTH必须是一个定值。
2, 同样是使用setFilters方法,动态改变限制的字符长度:
int mMaxLenth = 20;//mMaxLenth可以动态改变
InputFilter[] FilterArray = new InputFilter[1];
FilterArray[0] = new InputFilter() {undefined
@Override
public CharSequence (CharSequence source, int start, int end,
Spanned dest, int dstart, int dend){undefined
boolean bInvlid = false;
int sourceLen = getCharacterNum(ng());
int destLen = getCharacterNum(ng());
if (sourceLen + destLen > mMaxLenth) {undefined
return ""; }
return source;
}
};
ters(FilterArray);
3使用EditText的addTextChangedListener监听事件实现:
tChangedListener(new TextWatcher() {undefined
private int cou = 0;
int selectionEnd = 0;
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {undefined
cou = before + count;
String editable = t().toString();
t(editable);
}
ection(());
cou = ();
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {undefined
}@Override
public void afterTextChanged(Editable s) {undefined
if (cou > mMaxLenth) {undefined
selectionEnd = ectionEnd();
(mMaxLenth, selectionEnd);
}
}
});
对于以上三种方法,通过在不同手机上测试,发现如下问题:
如果使用1,2两种方法,在android 4.0以下的版本中,对于三星键盘英文输入法,会出现输入框上下跳动问题,比如三星S1等,而对于
4.0以上版本的手机,同样是三星键盘英文输入法,会出现输入字符错误,比如:三星NOTE 2上面在输入框内会莫名的多出许多字符。
对于第3种方法,则性能相对稳定。
对于字符过滤,同理,如果我们使用setFilters方法实现,那么,依然会出现输入框跳动和莫名多出许多字符的问题。
经过三星,LG,谷歌等各种品牌手机的测试,最后给出一种最优的解决方法,即,在EditText的addTextChangedListener监听事件中实
现字符过滤和长度限制:
// 设置过滤字符函数(过滤掉我们不需要的字符)
public static String stringFilter(String str)throws PatternSyntaxException{
String regEx = "[/:*?<>|"nt]";
Pattern p = Pattern.
compile
(regEx);
Matcher m = r(str);
return eAll("");
}
int mMaxLenth = 50;
tChangedListener(new TextWatcher() {undefined
private int cou = 0;
int selectionEnd = 0;
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {undefined
cou = before + count;
String editable = t().toString();
String str =
stringFilter
(editable);
if (!(str)) {undefined
t(str);
}
ection(());
cou = (); } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) {undefined } @Override public void afterTextChanged(Editable s) {undefined if (cou > mMaxLenth) {undefined selectionEnd = ectionEnd(); (mMaxLenth, selectionEnd); if((0)>='4') {undefined t(ng()); } } } });
2023年12月7日发(作者:夷辰阳)
关于android中EditText特殊字符过滤和字符长度限制的最优方
法
在开发中,经常会碰到edittext中特殊字符过滤和字符长度限制同时要求的问题,由于android不同版本之间的兼容问题,以及各种手机支
持情况不同,因此,经常会出现一些设备上面不兼容问题。为了解决这个问题,这里经过实践总结,给出一个最优的方案:
首先,对于字符长度的限制我们可以使用3种方法,如下:
1,使用EditText的setFilter方法实现,代码如下:
定义EditText对象mEditText;
字符限制长度int MAX_TEXT_INPUT_LENGTH;
ters(new InputFilter[]{new Filter(MAX_TEXT_INPUT_LENGTH)});
这种方法只能限制固定长度的字符数,也就是说MAX_TEXT_INPUT_LENGTH必须是一个定值。
2, 同样是使用setFilters方法,动态改变限制的字符长度:
int mMaxLenth = 20;//mMaxLenth可以动态改变
InputFilter[] FilterArray = new InputFilter[1];
FilterArray[0] = new InputFilter() {undefined
@Override
public CharSequence (CharSequence source, int start, int end,
Spanned dest, int dstart, int dend){undefined
boolean bInvlid = false;
int sourceLen = getCharacterNum(ng());
int destLen = getCharacterNum(ng());
if (sourceLen + destLen > mMaxLenth) {undefined
return ""; }
return source;
}
};
ters(FilterArray);
3使用EditText的addTextChangedListener监听事件实现:
tChangedListener(new TextWatcher() {undefined
private int cou = 0;
int selectionEnd = 0;
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {undefined
cou = before + count;
String editable = t().toString();
t(editable);
}
ection(());
cou = ();
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {undefined
}@Override
public void afterTextChanged(Editable s) {undefined
if (cou > mMaxLenth) {undefined
selectionEnd = ectionEnd();
(mMaxLenth, selectionEnd);
}
}
});
对于以上三种方法,通过在不同手机上测试,发现如下问题:
如果使用1,2两种方法,在android 4.0以下的版本中,对于三星键盘英文输入法,会出现输入框上下跳动问题,比如三星S1等,而对于
4.0以上版本的手机,同样是三星键盘英文输入法,会出现输入字符错误,比如:三星NOTE 2上面在输入框内会莫名的多出许多字符。
对于第3种方法,则性能相对稳定。
对于字符过滤,同理,如果我们使用setFilters方法实现,那么,依然会出现输入框跳动和莫名多出许多字符的问题。
经过三星,LG,谷歌等各种品牌手机的测试,最后给出一种最优的解决方法,即,在EditText的addTextChangedListener监听事件中实
现字符过滤和长度限制:
// 设置过滤字符函数(过滤掉我们不需要的字符)
public static String stringFilter(String str)throws PatternSyntaxException{
String regEx = "[/:*?<>|"nt]";
Pattern p = Pattern.
compile
(regEx);
Matcher m = r(str);
return eAll("");
}
int mMaxLenth = 50;
tChangedListener(new TextWatcher() {undefined
private int cou = 0;
int selectionEnd = 0;
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {undefined
cou = before + count;
String editable = t().toString();
String str =
stringFilter
(editable);
if (!(str)) {undefined
t(str);
}
ection(());
cou = (); } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) {undefined } @Override public void afterTextChanged(Editable s) {undefined if (cou > mMaxLenth) {undefined selectionEnd = ectionEnd(); (mMaxLenth, selectionEnd); if((0)>='4') {undefined t(ng()); } } } });